1
mirror of https://github.com/mpv-player/mpv synced 2024-09-05 02:48:21 +02:00
mpv/debian/postrm
eyck 99823621cb Pass control to debhelper scripts
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8912 b3059339-0415-0410-9bf9-f77b7e298cf2
2003-01-12 14:20:37 +00:00

19 lines
279 B
Bash

#!/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#