diff options
author | Olivier Berger <oberger@ouvaton.org> | 2011-04-25 22:38:28 +0200 |
---|---|---|
committer | Olivier Berger <oberger@ouvaton.org> | 2011-04-25 22:40:45 +0200 |
commit | b5b400aca66412bd026be2918b5d65f016661948 (patch) | |
tree | cee1fe7b6697f9a3b50b9e858af315ab1728ad64 | |
parent | 6ab6f3907f62435605af2a119b1552f5e5474d78 (diff) | |
download | backupninja-b5b400aca66412bd026be2918b5d65f016661948.tar.gz backupninja-b5b400aca66412bd026be2918b5d65f016661948.tar.bz2 |
Fix option name, and revert defaults to previous settings
-rw-r--r-- | handlers/dup.helper.in | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/handlers/dup.helper.in b/handlers/dup.helper.in index 98bce1c..38a57c0 100644 --- a/handlers/dup.helper.in +++ b/handlers/dup.helper.in @@ -419,27 +419,21 @@ incremental = $dup_incremental #increments = keep increments = $dup_increments -# how many days of data to keep ; default is 1 year. +# how many days of data to keep ; default is 60 days. # (you can also use the time format of duplicity) # 'keep = yes' means : do not delete old data, the remote host will take care of this +#keep = 60 #keep = 1Y #keep = yes keep = $dup_keep # for how many full backups do we keep their later increments ; -# default is 6. -# increments for older full backups will be deleted : only the more -# recent ones will be kept -#keepincrofulls = 6 -keepincrofulls = $dup_keepincroffulls - -# for how many full backups do we keep their later increments ; # default is all (keep all increments). # increments for older full backups will be deleted : only the more # recent ones (count provided) will be kept -#keepincrofulls = all -#keepincrofulls = 6 -keepincrofulls = $dup_keepincroffulls +#keepincroffulls = all +#keepincroffulls = 6 +keepincroffulls = $dup_keepincroffulls # full destination URL, in duplicity format; if set, desturl overrides # sshoptions, destdir, desthost and destuser; it also disables testconnect and |