Run git-daemon as an inetd service instead of a separate daemon.
[invirt/packages/invirt-dev.git] / debian / invirt-dev.prerm
index 5d8daa3..80d7817 100755 (executable)
@@ -19,6 +19,8 @@ set -e
 
 case "$1" in
     remove|upgrade|deconfigure)
+        [ "$1" = "remove" ] && update-inetd --disable git
+
         perl -i.bak -ne 's%^### (BEGIN|END) invirt-dev\s*$%%m && ($skip = ($1 eq "BEGIN")); print unless $skip;' /etc/sudoers
     ;;
 
@@ -31,6 +33,14 @@ case "$1" in
     ;;
 esac
 
+if [ -x /etc/init.d/invirt-dev ]; then
+    if hash invoke-rc.d 2>/dev/null; then
+        invoke-rc.d invirt-dev stop
+    else
+        /etc/init.d/invirt-dev stop
+    fi
+fi
+
 # dh_installdeb will replace this with shell code automatically
 # generated by other debhelper scripts.