From 9c9ab49442830d1d38debf6947bf00d71db3d6df Mon Sep 17 00:00:00 2001 From: lookshe Date: Mon, 12 Jun 2023 21:15:41 +0200 Subject: remove remote path for borg --- backup.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'backup.sh') diff --git a/backup.sh b/backup.sh index 567d15e..3e06c00 100755 --- a/backup.sh +++ b/backup.sh @@ -72,11 +72,11 @@ function check_borg_repo { repo_path="$userserver:$backupdir/$serverdir/$repo" fi #check if repo exists - $nice $borg_local_path list --remote-path "$borg_remote_path" "$repo_path" > /dev/null 2>&1 + $nice $borg_local_path list "$repo_path" > /dev/null 2>&1 if [ $? -ne 0 ] then # create repo if not exists - $nice $borg_local_path init --remote-path "$borg_remote_path" --encryption "$borg_encryption" "$repo_path" + $nice $borg_local_path init --encryption "$borg_encryption" "$repo_path" if [ $? -ne 0 ] then $echo "problem in borg init $repo" @@ -108,10 +108,10 @@ function backup_dir { ret=0 if [ -f "backup.ignore" ] then - $nice $borg_local_path create --remote-path "$borg_remote_path" --one-file-system --exclude-from "backup.ignore" --compression "$borg_compression" "$repo_path" . + $nice $borg_local_path create --one-file-system --exclude-from "backup.ignore" --compression "$borg_compression" "$repo_path" . ret=$? else - $nice $borg_local_path create --remote-path "$borg_remote_path" --one-file-system --compression "$borg_compression" "$repo_path" . + $nice $borg_local_path create --one-file-system --compression "$borg_compression" "$repo_path" . ret=$? fi popd > /dev/null -- cgit v1.2.3