summaryrefslogtreecommitdiff
path: root/debian/gcstar.postrm
blob: 7f453dbdf84305088f74a15195c30d0b54c72484 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

set -e
#
# set -e are disabled because pathfind update-inetd 
# gives an piuparts error.
#

if [ "$1" = purge ] ; then
#
# purge files
#
    rm -f /usr/share/mime/application/x-gcstar.xml
fi

#DEBHELPER#

exit 0