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

« back to all changes in this revision

Viewing changes to dkms_autoinstaller

  • Committer: Bazaar Package Importer
  • Author(s): Mario Limonciello, Mario Limonciello, Giuseppe Iuculano
  • Date: 2011-07-22 13:36:32 UTC
  • mfrom: (1.1.16 upstream)
  • Revision ID: james.westby@ubuntu.com-20110722133632-gliqndk9vu3iwv2c
Tags: 2.2.0.2-1
[ Mario Limonciello ]
* [c5846b6] Imported Upstream version 2.2.0.2
  - Doesn't leave files in /tmp (Closes: #633802)
  - Autoinstall works on multiple kernels (Closes: #634979) (LP: #812979)
  - PRE_BUILD command working directory fix. (LP: #812088)
* [83b5f6e] Drop kfreebsd.patch.  Merged upstream

[ Giuseppe Iuculano ]
* [a80ecc5] Updated VCS control field

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# Short-Description: Automatically install DKMS modules for new kernels
15
15
# Description: A service to automatically install DKMS modules for new kernels.
16
16
### END INIT INFO
17
 
kernel=`uname -r`
 
17
 
18
18
test -f /usr/sbin/dkms || exit 0
19
19
 
20
20
if [ -f /lib/lsb/init-functions ]; then
29
29
    alias log_action_end_msg=log_end_msg
30
30
fi
31
31
 
 
32
if [ -n "$2" ]; then
 
33
    kernel="$2"
 
34
else
 
35
    kernel=`uname -r`
 
36
fi
 
37
 
32
38
# See how we were called.
33
39
case "$1" in
34
40
  start)
35
41
    log_daemon_msg "dkms: running auto installation service for kernel $kernel"
36
 
    dkms autoinstall
 
42
    dkms autoinstall --kernelver $kernel
37
43
    log_end_msg $?
38
44
    ;;
39
45
  stop|restart|force-reload|status|reload)