aboutsummaryrefslogtreecommitdiffstats
path: root/profiles/backup-sync
diff options
context:
space:
mode:
Diffstat (limited to 'profiles/backup-sync')
-rwxr-xr-xprofiles/backup-sync13
1 files changed, 6 insertions, 7 deletions
diff --git a/profiles/backup-sync b/profiles/backup-sync
index d4514ea..394d667 100755
--- a/profiles/backup-sync
+++ b/profiles/backup-sync
@@ -3,17 +3,16 @@
echo "Sending backup to backup server"
# make sure the destination directory exists
-ssh "$BACKUP_SERVER" mkdir -p $FQDN/week
+ssh "$RBU_SERVER" mkdir -p $FQDN/week
# get the name of the renamed backup and also rename
# this backup on the remote to prevent dulpicate upload
-CURR_BACKUP=$(ls -t "$BACKUP_LOCATION" | sed -n 2p)
+CURR_BACKUP=$(ls -t "$RBU_LOCATION" | sed -n 2p)
if [ -n "$CURR_BACKUP" ]; then
- HOSTNAME=$(hostname)
- ssh "$BACKUP_SERVER" mv -f \
- $FQDN/week/$HOSTNAME.apkovl.tar.gz${SUFFIX} \
+ ssh "$RBU_SERVER" mv -f \
+ $FQDN/week/$(hostname).apkovl.tar.gz${SUFFIX} \
$FQDN/week/$CURR_BACKUP
fi
-rsync -av --delete-after "$BACKUP_LOCATION/" \
- "$BACKUP_SERVER":"$FQDN"/week
+rsync -av --delete-after "$RBU_LOCATION/" \
+ "$RBU_SERVER":"$FQDN"/week