diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2010-01-31 14:37:07 -0500 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2010-01-31 14:37:07 -0500 |
commit | 3371831548da8bacd2a7245252a6a151b30060bb (patch) | |
tree | 3d88fac152863002ad7551538b8f9efaf2ed0606 /post-install.d/50vcs-commit | |
parent | 2d236ffff81e47bb29866fbfa8d87775ab510a68 (diff) |
Fix cleanup of /var/cache/etckeeper/packagelist.pre-install after an upgrade where no conffiles are changed.
Diffstat (limited to 'post-install.d/50vcs-commit')
-rwxr-xr-x | post-install.d/50vcs-commit | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/post-install.d/50vcs-commit b/post-install.d/50vcs-commit index 12fd187..6cb6bd1 100755 --- a/post-install.d/50vcs-commit +++ b/post-install.d/50vcs-commit @@ -13,8 +13,11 @@ if etckeeper unclean; then if [ -n "$diff" ]; then message="$message$NL${NL}Package changes:$NL$diff" fi - rm -f $pl.pre-install fi etckeeper commit "$(printf "$message")" fi + +if [ -e $pl.pre-install ]; then + rm -f $pl.pre-install +fi |