aboutsummaryrefslogtreecommitdiff
path: root/src/linux-tools/cpupower.rc
blob: 88edaf791cac18176f2463047a74b04b792d4523 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

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

case "$1" in
  start|restart)
    status 'Setting cpupower rules' /usr/lib/systemd/scripts/cpupower || exit 1
  ;;
  *)
    echo "usage: ${0##*/} {start|restart}" >&2
    exit 1
  ;;
esac

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