view debian/postrm @ 14865:c90a84da69f1

We should match end of token as well, to prevent MSGTR_FOO2 matching instead of MSGTR_FOO. Helps compilation in case of some changes to help*.h files.
author wight
date Tue, 01 Mar 2005 10:44:45 +0000
parents 02309ce6fc22
children
line wrap: on
line source

#!/bin/sh

set -e

if [ "$1" = "purge" ]; then
	if [ -e /usr/share/debconf/confmodule ]; then
		# Source debconf library.
		. /usr/share/debconf/confmodule
		# Remove my changes to the db.
		db_purge
	fi

	if [ -d /etc/mplayer/ ]; then
		rm -rf /etc/mplayer/
	fi
fi

#DEBHELPER#