diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-05-16 21:08:03 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-05-16 21:08:03 -0300 |
commit | 77633002019784c0460a6a3ceb6224b86cda5ea8 (patch) | |
tree | 765e921ccbcabd506a4115c7d4bee26058431b3c | |
parent | 5800685a7034caf5ccae34add9958ca2be819b32 (diff) | |
download | puppet-backup-77633002019784c0460a6a3ceb6224b86cda5ea8.tar.gz puppet-backup-77633002019784c0460a6a3ceb6224b86cda5ea8.tar.bz2 |
Fix duplicity invocation
-rw-r--r-- | templates/duplicity.sh.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/duplicity.sh.erb b/templates/duplicity.sh.erb index 846f9de..bd03808 100644 --- a/templates/duplicity.sh.erb +++ b/templates/duplicity.sh.erb @@ -41,7 +41,7 @@ else # it's important to let $EXCLUDE come before $INCLUDE to # have greater precedence; see duplicity(1) for more info - duplicity -v6 --full-if-older-than $FULL_IF_OLDER_THAN \ + duplicity --full-if-older-than $FULL_IF_OLDER_THAN \ --tempdir $TMP --encrypt-key $ENCRYPT_KEY --sign-key $SIGN_KEY \ --exclude $TMP $EXCLUDE $INCLUDE --exclude '**' / file:////$BACKUP_FOLDER |