blob: 2930417917479906ff6b52454d130b0bc9d52041 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/sbin/runscript
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
depend() {
need localmount
}
start() {
local args=
[ -n "${BATTERY_MODE}" ] && args="${args} -b ${BATTERY_MODE}"
[ -n "${AC_MODE}" ] && args="${args} -a ${AC_MODE}"
ebegin "Starting Power Control Daemon"
start-stop-daemon --start --exec /usr/sbin/powerd \
--pidfile /var/run/powerd.pid \
-- ${args} ${POWERD_OPTS}
eend $? "Failed to start powerd"
}
stop() {
ebegin "Stopping Power Control Daemon"
start-stop-daemon --stop --exec /usr/sbin/powerd \
--pidfile /var/run/powerd.pid
eend $? "Failed to stop powerd"
}
|