remove remote path for borg
This commit is contained in:
parent
7c2d0642c4
commit
9c9ab49442
3 changed files with 7 additions and 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
|
||||
|
|
|
@ -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
|
||||
|
|
1
main.cfg
1
main.cfg
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue