packages/gms-debian/gms.postrm
author renatofilho
Fri Feb 01 14:30:21 2008 +0000 (2008-02-01)
branchtrunk
changeset 905 d2d226b5a4bd
permissions -rw-r--r--
[svn r911] created release 0.7; moved debian dir to packages project
renatofilho@905
     1
#!/bin/sh
renatofilho@905
     2
renatofilho@905
     3
set -e
renatofilho@905
     4
renatofilho@905
     5
#DEBHELPER#
renatofilho@905
     6
renatofilho@905
     7
if [ "$1" = "purge" ] ; then
renatofilho@905
     8
        invoke-rc.d --force gms stop
renatofilho@905
     9
        deluser --quiet --system gms > /dev/null || true
renatofilho@905
    10
        delgroup --quiet --system gms > /dev/null || true
renatofilho@905
    11
fi
renatofilho@905
    12
renatofilho@905
    13
exit 0