commit 78fbbd3745c1df884031194f6b07fa305580236f
parent 47661242f1978048afed3a9b92a6c0f8415c3f6b
Author: AndrewLockVI <andrew@laack.co>
Date: Sun, 9 Feb 2025 00:00:44 -0600
Removed verbose from backup
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/backupHelper.sh b/backupHelper.sh
@@ -1,7 +1,6 @@
#!/bin/bash
# (a) Archive mode (recursive, symlinks, preserve permissions, etc.)
-# (v) Verbose
# (z) Compress
# This ensures in case there have been any issues with the mount it will remount it.
@@ -12,6 +11,6 @@ if ! mount | grep "/mnt " > /dev/null; then
sshfs andrew@brgr.heron-peacock.ts.net:/home/shared/ /mnt/ -o reconnect
fi
-rsync -avz /mnt/* /home/serverBackup
+rsync -az /mnt/* /home/serverBackup
doas umount -l /mnt
echo "=== COMPLETED SUCCESSFULLY ==="