mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
16 lines
270 B
Bash
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:
|