view debian/postrm @ 307:a6e66cc358e8 noffle

[svn] output md5sums and conffiles
author godisch
date Mon, 17 Feb 2003 17:11:14 +0000
parents 3b5b7f3fd71f
children 21ba70d6eb38
line wrap: on
line source

#!/bin/sh
# $Id: postrm 434 2003-02-14 13:54:32Z godisch $

set -e
. /usr/share/debconf/confmodule
db_version 2.0

server_config=/etc/news/noffle.conf
debian_config=/etc/default/noffle

case "$1" in
purge)
	update-inetd --remove "/usr/bin/noffle -r" || :
	echo "Removing /var/spool/noffle and contents..."
	rm -rf /etc/noffle \
		/etc/noffle.conf /etc/noffle.conf.old \
		$server_config $server_config.old \
		$debian_config $debian_config.old \
		/var/spool/noffle || :
	update-rc.d noffle remove > /dev/null
	db_purge
	;;
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
	;;
*)
	echo "postrm called with unknown argument '$1'" >&2
	exit 1
	;;
esac

exit 0