~ubuntu-branches/debian/stretch/dkms/stretch

« back to all changes in this revision

Viewing changes to debian/scripts/prerm-dkms

  • Committer: Bazaar Package Importer
  • Author(s): Giuseppe Iuculano, David Paleino, Giuseppe Iuculano
  • Date: 2010-01-27 10:02:27 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20100127100227-p8fawacw9e4e2spw
Tags: 2.1.1.1-1
[ David Paleino ]
* [19ac85e] Added DKMS debhelper script (Closes: #553665)

[ Giuseppe Iuculano ]
* [9d66264] Imported Upstream version 2.1.1.1
* [0735c11] Removed 01_upstart.patch
* [ec26539] Merge from Ubuntu: Remove the init script and Upstart job.
  There is no reason that DKMS needs to run on boot; you can build
  modules for non-running kernels just fine at installation time.
* [48ff9a4] Correct a minor shell error in dkms_autoinstaller
* [5c76a45] Fixed a minor spelling error in dh_dkms man page
* [c611461] debian/preinst: Use set -e

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DKMS_NAME=#MODULE_NAME#
 
2
DKMS_VERSION=#MODULE_VERSION#
 
3
 
 
4
case "$1" in
 
5
    remove|upgrade|deconfigure)
 
6
      if [  "$(dkms status -m $DKMS_NAME)" ]; then
 
7
         dkms remove -m $DKMS_NAME -v $DKMS_VERSION --all
 
8
      fi
 
9
    ;;
 
10
esac