1
0
mirror of https://github.com/azlux/dpkg-deb synced 2024-11-23 06:46:18 +00:00
dpkg-deb/sheepit/DEBIAN/postrm
2020-02-24 19:40:16 +01:00

15 lines
199 B
Bash
Executable File

#!/usr/bin/env bash
case "$1" in
purge)
if [ -e /usr/share/debconf/confmodule ]; then
. /usr/share/debconf/confmodule
db_purge
fi
;;
*)
;;
esac
exit 0