mirror of
https://0xacab.org/liberate/backupninja.git
synced 2024-11-10 04:42:31 +01:00
Fix #6357 - Don't remove useful signature files
duplicity >=0.6.20 now correctly removes useless signature files and therefore the cache directory doesn't grow infinitely any more. Using --extra-clean removes all signatures except from the last chain and so renders older chains unusable, don't use it by default any more. See: https://bugs.launchpad.net/duplicity/+bug/519948
This commit is contained in:
parent
e96a894bb8
commit
e27654df5c
@ -191,7 +191,9 @@ else
|
||||
fi
|
||||
|
||||
### Cleanup options
|
||||
execstr_options="${execstr_options} --extra-clean"
|
||||
if [ "$duplicity_major" -le 0 -a "$duplicity_minor" -le 6 -a "$duplicity_sub" -le 19 ]; then
|
||||
execstr_options="${execstr_options} --extra-clean"
|
||||
fi
|
||||
|
||||
### Temporary directory
|
||||
if [ -n "$tmpdir" ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user