gmyth-stream/server/debian/gms.postrm
author renatofilho
Thu Jan 31 13:19:29 2008 +0000 (2008-01-31)
branchtrunk
changeset 901 d6ec9a68363e
parent 815 7f290a3a34b1
permissions -rw-r--r--
[svn r907] created readme file
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