From a3aeea9e4b4f06eb4b4eb4e6a009f15749d06739 Mon Sep 17 00:00:00 2001 From: mxmehl Date: Tue, 17 Jan 2017 18:04:53 +0100 Subject: [PATCH] remove debug leftover --- uberspace-backup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uberspace-backup.sh b/uberspace-backup.sh index a4e87b1..61c7b67 100755 --- a/uberspace-backup.sh +++ b/uberspace-backup.sh @@ -47,7 +47,7 @@ while read line; do if [ ! -e "${DEST}" ]; then mkdir -p "${DEST}"; fi # RSYNC - echo rsync -avz -e "ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" --progress ${RHOST}:${SOURCE}/ "${DEST}"/ + rsync -avz -e "ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" --progress ${RHOST}:${SOURCE}/ "${DEST}"/ # Pack backup directory, and delete uncompressed one tar cf ${DEST}.tar ${DEST} # TODO: avoid absolute paths