#!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 start() { ebegin "Starting powerd" local args if [ ! -z "$BATTERY_MODE" ] ; then args="-b ${BATTERY_MODE}" fi if [ ! -z "$AC_MODE" ] ; then args="${args} -a ${AC_MODE}" fi /usr/sbin/powerd ${args} $POWERD_OPTS > /dev/null eend $? } stop() { ebegin "Stopping powerd" killall powerd &>/dev/null || return 0 eend $? }