| Server IP : 37.9.174.138 / Your IP : 216.73.216.117 Web Server : Apache System : Linux vps6.backend.sk 6.12.100+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.100-1 (2026-07-30) x86_64 User : ftpuser ( 1001) PHP Version : 8.4.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/lib/dkms/ |
Upload File : |
#!/bin/sh
#
# dkms_autoinstaller - A service to automatically install DKMS modules for new kernels.
#
# chkconfig: 345 04 04
# description: Compiles and install kernel modules automatically for new \
# kernels at boot.
### BEGIN INIT INFO
# Provides: dkms_autoinstaller dkms
# Default-Start: 3 4 5
# Default-Stop: 0 1 2 6
# Required-Start: $local_fs
# Required-Stop: $local_fs
# Short-Description: DKMS kernel modules installer service
# Description: A service to automatically install DKMS modules for new kernels.
### END INIT INFO
exec="/usr/sbin/dkms"
MODDIR="/lib/modules"
test -f $exec || exit 0
case "$1" in
start)
if [ -n "$2" ]; then
kernel="$2"
else
kernel=$(uname -r)
fi
if [ ! -d "$MODDIR/$kernel/build/include" ]; then
echo "Automatic installation of modules for kernel $kernel was skipped since the kernel headers for this kernel do not seem to be installed."
else
dkms autoinstall --kernelver "$kernel"
res=$?
test $res = 0
fi
;;
stop|restart|force-reload|status|reload)
# There is no stop action, this and the 04 priority during stop is
# added to make RHEL chkconfig happy.
# Ignore others on debian/ubuntu too
;;
*)
echo "Usage: $0 {start}"
exit 2
esac