gmyth-stream/server/debian/gms.postrm
author melunko
Tue Oct 23 13:58:20 2007 +0100 (2007-10-23)
branchtrunk
changeset 863 c25708b9b1e3
parent 815 7f290a3a34b1
permissions -rw-r--r--
[svn r869] Version changed to 0.4.1. Small changes in the debian/control to correct libcurl dependencies
renatofilho@815
     1
#!/bin/sh
renatofilho@815
     2
renatofilho@815
     3
set -e
renatofilho@815
     4
renatofilho@815
     5
#DEBHELPER#
renatofilho@815
     6
renatofilho@815
     7
if [ "$1" = "purge" ] ; then
renatofilho@815
     8
        invoke-rc.d --force gms stop
renatofilho@815
     9
        deluser --quiet --system gms > /dev/null || true
renatofilho@815
    10
        delgroup --quiet --system gms > /dev/null || true
renatofilho@815
    11
fi
renatofilho@815
    12
renatofilho@815
    13
exit 0