annotate debian/postrm @ 20276:f0f6217f58e2
r20257: Disable loading of file-specific configuration file from the same
directory as the played file. Add a command-line switch to enable it.
r20260: Update x264 option names that changed with r20060
r20264: small grammar fix
r20265: Use American spelling of "gray" instead for British's "grey" for XviD option
r20277: Update x264 option names that changed with r20060
r20279: mention new -use-filedir-conf option in general config description
r20280: remove me=3 leftover (x264)
author |
kraymer |
date |
Tue, 17 Oct 2006 11:21:11 +0000 |
parents |
02309ce6fc22 |
children |
|
rev |
line source |
7214
|
1 #!/bin/sh
|
|
2
|
|
3 set -e
|
|
4
|
|
5 if [ "$1" = "purge" ]; then
|
8908
|
6 if [ -e /usr/share/debconf/confmodule ]; then
|
|
7 # Source debconf library.
|
|
8 . /usr/share/debconf/confmodule
|
|
9 # Remove my changes to the db.
|
|
10 db_purge
|
|
11 fi
|
|
12
|
|
13 if [ -d /etc/mplayer/ ]; then
|
|
14 rm -rf /etc/mplayer/
|
|
15 fi
|
7214
|
16 fi
|
8911
|
17
|
|
18 #DEBHELPER#
|