PKGBUILDs/community/linux-tools/cpupower.rc
2012-10-01 12:41:07 +00:00

16 lines
270 B
Bash

#!/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: