]> oss.titaniummirror.com Git - cp210x.git/blobdiff - debian.in/prerm
Revamp build strategy
[cp210x.git] / debian.in / prerm
diff --git a/debian.in/prerm b/debian.in/prerm
deleted file mode 100755 (executable)
index 9985327..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-
-NAME=xxPACKAGExx
-VERSION=xxDEBVERxx
-
-set -e
-
-case "$1" in
-    remove|upgrade|deconfigure)
-      rmmod xxROOTNAMExx 2>/dev/null || true
-      if [  "`dkms status -m $NAME`" ]; then
-         dkms remove -m $NAME -v $VERSION --all
-      fi
-    ;;
-
-    failed-upgrade)
-    ;;
-
-    *)
-        echo "prerm called with unknown argument \`$1'" >&2
-        exit 1
-    ;;
-esac
-
-#DEBHELPER#
-
-exit 0
-