pkg://wipl-daemon_20020601-10_powerpc.deb:52664/postrm
info downloads
#!/bin/sh
# Automatically added by dh_installdebconf
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
. /usr/share/debconf/confmodule
db_purge
fi
# End automatically added section
# If purge, remove: log files, config files and users
if [ "$1" = "purge" ]; then
rm -f /var/log/wipld.log*
rm -f /etc/wipld.conf
if [ -e /etc/wipld.conf.dpkg-old ]; then
rm -f /etc/wipld.conf.dpkg-old
fi
userdel wipld
groupdel wipld &>/dev/null # Not necessary on most systems
# In any case, remove the rc scripts (may already have been removed)
set +e
update-rc.d wipl-daemon remove &>/dev/null
set -e
fi