mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 13:24:40 +08:00
23 lines
319 B
Bash
23 lines
319 B
Bash
#!/bin/bash
|
|
|
|
. /etc/rc.conf
|
|
. /etc/rc.d/functions
|
|
|
|
DKMS=/usr/sbin/dkms
|
|
|
|
case "$1" in
|
|
start)
|
|
status 'Starting DKMS autoinstall' $DKMS autoinstall --kernelver $(uname -r)
|
|
;;
|
|
stop)
|
|
stat_busy "Stopping DKMS"
|
|
stat_done
|
|
;;
|
|
*)
|
|
echo "usage: ${0##*/} {start|stop}" >&2
|
|
;;
|
|
esac
|
|
|
|
:
|
|
# vim:set ts=2 sw=2 ft=sh noet:
|