blob: 614d740c483fd5a5140c2ee71e8d1dab6cf2cbc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
# Copyright (C) 2008 Mario Limonciello
set -e
#DEBHELPER#
CVERSION=`dpkg-query -W -f='${Version}' virtualbox-ose-guest-source | awk -F "-" '{print $1}' | cut -d\: -f2`
case "$1" in
remove|upgrade|purge)
echo "Removing all DKMS Modules"
dkms remove -m virtualbox-ose-guest -v $CVERSION --all > /dev/null || true
echo "Done."
;;
esac
|