diff options
-rwxr-xr-x | backup.sh | 8 | ||||
-rwxr-xr-x | backup_db.sh | 6 | ||||
-rw-r--r-- | main.cfg | 1 |
3 files changed, 7 insertions, 8 deletions
@@ -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 diff --git a/backup_db.sh b/backup_db.sh index d35f921..e99243d 100755 --- a/backup_db.sh +++ b/backup_db.sh @@ -75,11 +75,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" @@ -107,7 +107,7 @@ function backup_db { repo_path="$userserver:$backupdir/$serverdir/$repo::{now:$default_timestamp}" fi ret=0 - $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=$? if [ $ret -ne 0 ] then @@ -7,7 +7,6 @@ logfile=$confdir/logfile.log keyfile=/PATH/TO/KEYFILE/id_rsa userserver="backupuser@backup.server" borg_local_path=/usr/local/sbin/borg -borg_remote_path=/usr/local/sbin/borg # for borg specific settings take a look at its documentation https://borgbackup.readthedocs.io/ borg_compression=zlib,9 borg_encryption=none |