1
0
mirror of https://github.com/azlux/dpkg-deb synced 2025-01-18 08:03:30 +00:00
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