mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-23 21:51:27 +00:00
git-svn-id: http://svn.code.sf.net/p/scst/svn/branches/3.3.x@7610 d57e44dd-8a1f-0410-8b47-8ef2f437770f
11 lines
170 B
Bash
11 lines
170 B
Bash
#!/bin/sh
|
|
|
|
DKMS_NAME=scst
|
|
DKMS_VERSION=${PACKAGE_VERSION}
|
|
|
|
case "$1" in
|
|
upgrade|remove|deconfigure)
|
|
dkms remove -m "$DKMS_NAME" -v "$DKMS_VERSION" --all
|
|
;;
|
|
esac
|