X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=debian.in%2Fprerm;fp=debian.in%2Fprerm;h=0000000000000000000000000000000000000000;hb=74e64be8b45a7ff22f994552a95c797575dbe384;hp=9985327477610495c5e7ba89041fe3a5600ed89a;hpb=2ae34928adb5da51a66170a52678bb4a7d2d212a;p=cp210x.git diff --git a/debian.in/prerm b/debian.in/prerm deleted file mode 100755 index 9985327..0000000 --- a/debian.in/prerm +++ /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 -