X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=debian.in%2Fpostrm;fp=debian.in%2Fpostrm;h=0000000000000000000000000000000000000000;hb=74e64be8b45a7ff22f994552a95c797575dbe384;hp=30f451d8534f5e630645e504a85375ad05a18a19;hpb=2ae34928adb5da51a66170a52678bb4a7d2d212a;p=cp210x.git diff --git a/debian.in/postrm b/debian.in/postrm deleted file mode 100755 index 30f451d..0000000 --- a/debian.in/postrm +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh - -NAME=xxPACKAGExx -VERSION=xxDEBVERxx - -set -e - -case "$1" in - purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) - depmod - if [ -d "/usr/src/$NAME-$VERSION" ]; then - echo "Removing old module source..." - rm -rf "/usr/src/$NAME-$VERSION" - fi - ;; - - *) - echo "postrm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -#DEBHELPER# - -exit 0 -