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

1.1.2 by Mario Limonciello
Import upstream version 2.0.19
1
#!/bin/bash
2
3
# We're passed the version of the kernel being installed
4
inst_kern=$1
5
6
[ -x /etc/init.d/dkms_autoinstaller ] && \
7
  /etc/init.d/dkms_autoinstaller start $inst_kern
8
9
exit 0