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