properly purge remaining config files on purge

This commit is contained in:
kevin.tanguy
2019-02-14 14:22:55 +01:00
committed by Charles Herlin
parent 2b2a91a564
commit fc88194eca
2 changed files with 20 additions and 2 deletions

18
debian/postrm vendored Normal file
View File

@ -0,0 +1,18 @@
#!/bin/sh
set -e
case "$1" in
purge)
rm -f /opt/cis-hardening/etc/conf.d/*.cfg
;;
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
# nothing to do
;;
*)
echo "$0 called with unknown argument \`$1\`'" >&2
exit 1
;;
esac