gmyth-stream/server/debian/gms.postrm
author melunko
Thu Aug 30 13:46:59 2007 +0100 (2007-08-30)
branchtrunk
changeset 836 fb7baa0b3d2d
parent 815 7f290a3a34b1
permissions -rw-r--r--
[svn r842] Added some more fields at ScheduleInfo structure
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