view debian/postrm @ 14841:a7cc851f72ad

Move native RealAudio 1.0 / 2.0 up in the list to prefer it over the binary codecs from Real and made the info line fit 80 characters. blessed by Roberto
author diego
date Sun, 27 Feb 2005 14:07:28 +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#