diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2016-05-26 08:56:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2016-06-03 11:37:20 +0000 |
commit | 6cfcec03c6bdbb3cebf3d06b446e052c871c797e (patch) | |
tree | 931c0286331122f1bcd114ff289a233c04b549d2 /share/scripts/debconf | |
parent | Using safety measures of rm when removing containers because of (potentially)... (diff) | |
download | compute-tools-6cfcec03c6bdbb3cebf3d06b446e052c871c797e.tar.xz compute-tools-6cfcec03c6bdbb3cebf3d06b446e052c871c797e.zip |
Correcting cleanup of temporary debconf files in debconf script.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to '')
-rwxr-xr-x | share/scripts/debconf | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/share/scripts/debconf b/share/scripts/debconf index 1c5884b..0c952e8 100755 --- a/share/scripts/debconf +++ b/share/scripts/debconf @@ -1028,6 +1028,5 @@ then fi # remove debconf temporary files -#FIXME -#echo rm --preserve-root --one-file-system -rf "${DEBCONF_TMPDIR}" -rmdir --ignore-fail-on-non-empty /tmp/container-tools || true +rm --preserve-root --one-file-system -rf "${DEBCONF_TMPDIR}" +rmdir --ignore-fail-on-non-empty /tmp/container-tools 2>&1 || true |