view debian/postrm @ 17235:fbac61e449d5

Add "application/x-mms-framed" for ASF Fixes http://64.34.147.109:3690/CFMJAM, closes bug #420 Fix by Rado R. ||| r_a_d_o |a| hotmail | com |||
author rtognimp
date Sat, 24 Dec 2005 18:17:39 +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#