pkg://dwww_1.9.21_m68k.deb:99216/postrm
info downloads
#!/bin/sh
#
# Debian postrm script for dwww.
# "@(#)dwww:$Id: dwww.postrm,v 1.1 2001/12/05 07:29:50 robert Exp $"
#
set -e
if [ "X$1" = "Xpurge" -a -d /etc/dwww ] ; then
echo -n "Purging configuration data in /etc/dwww/ ... "
rm -rf /etc/dwww
echo "done."
fi
# Automatically added by dh_installmenu
inst=/etc/menu-methods/dwww
if [ "$1" = "remove" ] && [ -f "$inst" ]; then chmod a-x $inst ; fi
if [ -x "`which update-menus 2>/dev/null`" ]; then update-menus ; fi
# End automatically added section
# 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
exit 0