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

4
debian/control vendored
View File

@ -11,7 +11,7 @@ Vcs-Browser: https://github.com/ovh/debian-cis/
Package: cis-hardening
Architecture: all
Depends: ${misc:Depends}, bc, patch
Description: Suite of configurable scripts to audit or harden a Debian Wheezy or Jessie.
Modular Debian 7/8 security hardening scripts based on cisecurity.org
Description: Suite of configurable scripts to audit or harden a Debian.
Modular Debian security hardening scripts based on cisecurity.org
⟨cisecurity.org⟩ recommendations. We use it at OVH ⟨https://www.ovh.com⟩ to
harden our PCI-DSS infrastructure.

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