gmyth-stream/server/debian/gms.postrm
author renatofilho
Wed Nov 21 15:06:32 2007 +0000 (2007-11-21)
branchtrunk
changeset 884 d3d62eca131c
parent 815 7f290a3a34b1
permissions -rw-r--r--
[svn r890] fixed dbname on backendinfo constructor; fixed uri livetv detect
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