view debian/postrm @ 9083:0704ccc47abf

Brought this file mostly in line with the MPlayer docs coding style. Code indented, all tags closed, attributes quoted, whitespace added. Translators: No pressing need to touch this file, no textual changes.
author diego
date Sat, 25 Jan 2003 03:19:38 +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#