aboutsummaryrefslogtreecommitdiff
path: root/init.d.BSD/powerd
diff options
context:
space:
mode:
Diffstat (limited to 'init.d.BSD/powerd')
-rw-r--r--init.d.BSD/powerd34
1 files changed, 0 insertions, 34 deletions
diff --git a/init.d.BSD/powerd b/init.d.BSD/powerd
deleted file mode 100644
index 3d3ae7f0..00000000
--- a/init.d.BSD/powerd
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/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
-}
-
-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
-}