From a464b7ef84461cc7200d40c0ab31e60f06c25c07 Mon Sep 17 00:00:00 2001 From: david Date: Sat, 20 Feb 2021 15:43:10 +0100 Subject: [PATCH] fixed a bug where the password file and repo were given twice --- restic_backup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/restic_backup.sh b/restic_backup.sh index 684d601..20590de 100755 --- a/restic_backup.sh +++ b/restic_backup.sh @@ -14,7 +14,7 @@ PASSWORD="/root/.restic-password" REPO="sftp:remote-server.tld:/path/to/repository" KEEP=30 BIN="/usr/bin/restic" -OPTIONS="-p $PASSWORD -r $REPO -q" +OPTIONS="-q" # **** START ****