You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
404 B
21 lines
404 B
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
package=ngcp-mediaproxy-ng-kernel-dkms
|
|
name=ngcp-mediaproxy-ng
|
|
|
|
version=`dpkg-query -W -f='${Version}' "$package" \
|
|
|rev|cut -d- -f2-|rev|cut -d':' -f2|tr -d "\n"`
|
|
|
|
# make sure it's not running
|
|
if [ -x /etc/init.d/ngcp-mediaproxy-ng-daemon ] ; then
|
|
invoke-rc.d ngcp-mediaproxy-ng-daemon stop || true
|
|
fi
|
|
|
|
dkms remove -m "$name" -v "$version" --all || true
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|