From 2c69a98bb334f44a7d5c5cebb2cdd0313153688e Mon Sep 17 00:00:00 2001 From: Xiao Pan Date: Sat, 13 Jan 2024 14:16:08 -0800 Subject: fix: duplicity --use-agent does not work when ssh to studio and pp --- upd | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'upd') diff --git a/upd b/upd index f09e540..0fd1e14 100755 --- a/upd +++ b/upd @@ -57,7 +57,10 @@ backup () { # https://wiki.archlinux.org/title/Duplicity # Need // for absolute path, see manpage URL FORMAT section. If not use //, will store to /home/xyz/home/xyz/... # --files-from has a bug, this bug makes source url that is / not working while /home works, more see vq notes - sudo duplicity --ssh-askpass --use-agent --encrypt-key 9790577D2BE328D46838117ED3F54FE03F3C68D6 --sign-key 05899270DF25BB1EEDF57BE824F769E5D08C9E9A --full-if-older-than 2Y --include /etc/.cfgs --include-filelist "/home/xyz/.config/myconf/upd_rsync_files" --exclude / / "sftp://xyz@xyzka.kyun.li//home/xyz/backup/$backup_branch" + # --use-agent not working when ssh to pp and insp, works on insp, not sure why + use_agent= + [ "$hostname" = xyzinsp ] && use_agent='--use-agent' + sudo duplicity --ssh-askpass $use_agent --encrypt-key 9790577D2BE328D46838117ED3F54FE03F3C68D6 --sign-key 05899270DF25BB1EEDF57BE824F769E5D08C9E9A --full-if-older-than 2Y --include /etc/.cfgs --include-filelist "/home/xyz/.config/myconf/upd_rsync_files" --exclude / / "sftp://xyz@xyzka.kyun.li//home/xyz/backup/$backup_branch" fi } -- cgit v1.2.3-70-g09d2