renatofilho@815: #!/bin/sh renatofilho@815: renatofilho@815: set -e renatofilho@815: renatofilho@815: #DEBHELPER# renatofilho@815: renatofilho@815: if [ "$1" = "purge" ] ; then renatofilho@815: invoke-rc.d --force gms stop renatofilho@815: deluser --quiet --system gms > /dev/null || true renatofilho@815: delgroup --quiet --system gms > /dev/null || true renatofilho@815: fi renatofilho@815: renatofilho@815: exit 0