Skip to content
Snippets Groups Projects
Commit 1cd91839 authored by intrigeri's avatar intrigeri
Browse files

dup: use duplicity's --extra-clean option when necessary

This is necessary to get rid of unnecessary old cache files when cleaning up,
when using duplicity >=0.6.01 that depends on local caching.

Closes: #572721
parent 7dce2f11
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,10 @@ version 0.9.8 -- UNRELEASED
handler changes
sys:
. Only run mdadm if RAID devices actually exist (Closes: #572450)
dup:
. Use duplicity's --extra-clean option to get rid of unnecessary old
cache files when cleaning up. This is enabled when using duplicity
0.6.01 or newer, that depends on local caching (Closes: #572721)
version 0.9.7 -- January 27, 2010
backupninja changes
......
......@@ -165,6 +165,11 @@ if [ "$incremental" == "no" ]; then
fi
fi
### Cleanup options
if [ "$duplicity_major" -ge 0 -a "$duplicity_minor" -ge 6 -a "$duplicity_sub" -ge 1 ]; then
execstr_options="${execstr_options} --extra-clean"
fi
### Temporary directory
precmd=
if [ -n "$tmpdir" ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment