2012-10-02 01:17:32 +08:00
|
|
|
#!/bin/bash
|
2012-04-10 02:20:07 +08:00
|
|
|
|
|
|
|
. /etc/rc.conf
|
|
|
|
. /etc/rc.d/functions
|
|
|
|
|
|
|
|
case "$1" in
|
2012-06-19 05:04:36 +08:00
|
|
|
start)
|
2012-10-02 01:17:32 +08:00
|
|
|
stat_busy 'Starting Dynamic Kernel Module System'
|
|
|
|
if /usr/lib/systemd/scripts/dkms start >/dev/null; then
|
|
|
|
add_daemon ${0##*/}
|
|
|
|
stat_done
|
|
|
|
else
|
|
|
|
stat_fail
|
|
|
|
exit 1
|
|
|
|
fi
|
2012-06-19 05:04:36 +08:00
|
|
|
;;
|
2012-04-10 02:20:07 +08:00
|
|
|
stop)
|
2012-10-02 01:17:32 +08:00
|
|
|
stat_busy 'Stopping Dynamic Kernel Module System'
|
|
|
|
if /usr/lib/systemd/scripts/dkms stop >/dev/null; then
|
|
|
|
rm_daemon ${0##*/}
|
|
|
|
stat_done
|
2012-06-19 05:04:36 +08:00
|
|
|
else
|
2012-10-02 01:17:32 +08:00
|
|
|
stat_fail
|
|
|
|
exit 1
|
2012-06-19 05:04:36 +08:00
|
|
|
fi
|
|
|
|
;;
|
2012-04-10 02:20:07 +08:00
|
|
|
*)
|
2012-06-19 05:04:36 +08:00
|
|
|
echo "usage: ${0##*/} {start|stop}" >&2
|
2012-10-02 01:17:32 +08:00
|
|
|
exit 1
|
2012-06-19 05:04:36 +08:00
|
|
|
;;
|
2012-04-10 02:20:07 +08:00
|
|
|
esac
|
|
|
|
|
|
|
|
:
|
2012-06-19 05:04:36 +08:00
|
|
|
# vim:set ts=2 sw=2 ft=sh et:
|