PKGBUILDs/community/linux-tools/cpupower.rc
2012-08-07 16:11:48 +00:00

18 lines
293 B
Bash

#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
. /etc/conf.d/${0##*/}
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: