You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
360 B
Bash
29 lines
360 B
Bash
#!/bin/sh
|
|
|
|
NAME=MODULE_NAME
|
|
VERSION=MODULE_VERSION
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
remove|upgrade|deconfigure)
|
|
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
|
|
|
|
|