summaryrefslogtreecommitdiffstats
path: root/backup.sh
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2016-01-21 14:35:12 +0100
committerFlorian Pritz <bluewind@xinu.at>2016-01-21 14:35:12 +0100
commitbb423d57028f54f6231c4084149a6d493ec35496 (patch)
treea32f123eeee812b69d43dbe02825d04e0f7e5116 /backup.sh
parent771f7319d8f56c1c40538fd8438d2c3b472f432f (diff)
downloadbin-bb423d57028f54f6231c4084149a6d493ec35496.tar.gz
bin-bb423d57028f54f6231c4084149a6d493ec35496.tar.xz
backup.sh: Drop logfile
Grows way too large Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'backup.sh')
-rwxr-xr-xbackup.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/backup.sh b/backup.sh
index 4f3ec69..760d78e 100755
--- a/backup.sh
+++ b/backup.sh
@@ -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=""
}