summaryrefslogtreecommitdiff
path: root/init.d.FreeBSD/powerd.in
diff options
context:
space:
mode:
Diffstat (limited to 'init.d.FreeBSD/powerd.in')
-rw-r--r--init.d.FreeBSD/powerd.in35
1 files changed, 35 insertions, 0 deletions
diff --git a/init.d.FreeBSD/powerd.in b/init.d.FreeBSD/powerd.in
new file mode 100644
index 0000000..106962a
--- /dev/null
+++ b/init.d.FreeBSD/powerd.in
@@ -0,0 +1,35 @@
+#!/sbin/runscript
+# Copyright 2007-2008 Roy Marples <roy@marples.name>
+# All rights reserved. Released under the 2-clause BSD license.
+
+command=/usr/sbin/powerd
+command_args=${powerd_args}
+pidfile=/var/run/powerd.pid
+name="Power Control Daemon"
+
+depend()
+{
+ need localmount
+ use logger
+ after bootmisc
+ keyword nojail
+}
+
+start_pre()
+{
+ if [ -n "${powerd_battery_mode}" ]; then
+ command_args="${command_args} -b ${powerd_battery_mode}"
+ fi
+ if [ -n "${powerd_ac_mode}" ]; then
+ command_args="${command_args} -a ${powerd_ac_mode}"
+ fi
+}
+
+stop_post()
+{
+ local level=$(sysctl -n dev.cpu.0.freq_levels |
+ sed -e 's:/.*::')
+ if [ -n "${level}" ]; then
+ sysctl dev.cpu.0.freq="${level}" >/dev/null
+ fi
+}