diff options
author | Florian Pritz <bluewind@xinu.at> | 2016-01-21 14:35:12 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2016-01-21 14:35:12 +0100 |
commit | bb423d57028f54f6231c4084149a6d493ec35496 (patch) | |
tree | a32f123eeee812b69d43dbe02825d04e0f7e5116 | |
parent | 771f7319d8f56c1c40538fd8438d2c3b472f432f (diff) | |
download | bin-bb423d57028f54f6231c4084149a6d493ec35496.tar.gz bin-bb423d57028f54f6231c4084149a6d493ec35496.tar.xz |
backup.sh: Drop logfile
Grows way too large
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rwxr-xr-x | backup.sh | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -87,7 +87,6 @@ backup() { #export PASSPHRASE duplicity \ - --log-file /var/log/backup.log \ -v5 \ --numeric-owner \ --volsize 250 \ @@ -96,7 +95,7 @@ backup() { --no-encryption \ "${options[@]}" "$@" "$src" "$dest" - duplicity --log-file /var/log/backup.log --force remove-older-than 120D "$dest" + duplicity --force remove-older-than 120D "$dest" #export PASSPHRASE="" } |