chiark / gitweb /
REORG Delete everything that's not innduct or build system or changed for innduct
[inn-innduct.git] / debian / inn2.prerm
diff --git a/debian/inn2.prerm b/debian/inn2.prerm
deleted file mode 100644 (file)
index b111c76..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh -e
-
-kill_innd() {
-    if [ -x /etc/init.d/inn2 ]; then
-       invoke-rc.d inn2 stop
-    fi
-}
-
-case "$1" in
-    remove|deconfigure|failed-upgrade)
-       kill_innd
-    ;;
-
-    upgrade)
-    ;;
-
-    *)
-    echo "$0 called with unknown argument '$1'" >&2
-    exit 1
-    ;;
-esac
-
-#DEBHELPER#
-
-exit 0