aboutsummaryrefslogtreecommitdiff
path: root/src/dkms/dkms.rc
blob: 073727475f41d549532b3382d81fe0c41518e604 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash

. /etc/rc.conf
. /etc/rc.d/functions

case "$1" in
  start)
    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
  ;;
  stop)
    stat_busy 'Stopping Dynamic Kernel Module System'
    if /usr/lib/systemd/scripts/dkms stop >/dev/null; then
      rm_daemon ${0##*/}
      stat_done
    else
      stat_fail
      exit 1
    fi
  ;;
  *)
    echo "usage: ${0##*/} {start|stop}" >&2
    exit 1
  ;;
esac

:
# vim:set ts=2 sw=2 ft=sh et: