From a529aad97d927a6be60f44d26f4e7904abbcd4bc Mon Sep 17 00:00:00 2001 From: capntack Date: Mon, 4 Sep 2023 13:45:18 -0500 Subject: [PATCH] Removed extra forward slash --- templates/backupsTemplate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/backupsTemplate.sh b/templates/backupsTemplate.sh index 6495316..1ecbd39 100644 --- a/templates/backupsTemplate.sh +++ b/templates/backupsTemplate.sh @@ -38,7 +38,7 @@ set -eEuo pipefail # Configure variables from here... readonly RSYNC_SOURCE_01="/path/to/dir/to/backup-01" -readonly RSYNC_DEST_01="//path/to/dir/to/backup/to-01" +readonly RSYNC_DEST_01="/path/to/dir/to/backup/to-01" readonly RSYNC_MANIFEST_01="${SCRIPT_DIR}/rsyncManifest" readonly RSYNC_RETENTION_DAYS_01="9" # ...to here