File size: 310 Bytes
20ea5fc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#! /bin/sh
set -e
if [ "$1" = "purge" ]; then
rm -f /etc/adduser.conf /etc/adduser.conf.dpkg-save
fi
# Automatically added by dh_installdebconf/12.10ubuntu1
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
. /usr/share/debconf/confmodule
db_purge
fi
# End automatically added section
|