summarylogtreecommitdiffstats
path: root/k10ctl.rc
blob: f5b9f6772c0c5b4536195722cf93af1d5269549e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash

daemon_name=k10ctl
. /etc/rc.conf
. /etc/rc.d/functions

case "$1" in
  start)
    stat_busy "Setting CPU Voltages"
    /usr/bin/k10ctl.sh
    if [ $? -gt 0 ]; then
      stat_fail
      exit 1
    else
      stat_done
    fi
    ;;

  *)
    echo "usage: $0 {start}"
esac

exit 0