#!/bin/sh # # chkconfig: 2345 26 74 # description: apmd is used for monitoring battery status and logging it via \ # syslog(8). It can also be used for shutting down the machine when \ # the battery is low. # processname: apmd # config: /etc/sysconfig/apmd # clock: /etc/sysconfig/clock # If APM isn't supported by the kernel, try loading the module... [ -e /proc/apm ] || /sbin/modprobe apm &>/dev/null # Don't bother if /proc/apm still doesn't exist, kernel doesn't have # support for APM. [ -e /proc/apm ] || exit 0 CONFIG=/etc/sysconfig/apmd # Source function library. . /etc/init.d/functions RETVAL=0 start() { echo -n $"Starting up APM daemon: " test -r "$CONFIG" && . "$CONFIG" daemon /usr/sbin/apmd -p $LOGPERCENTCHANGE -w $WARNPERCENT $ADDPARAMS \ -P /etc/sysconfig/apm-scripts/apmscript RETVAL=$? [ $RETVAL -eq 0 ] && touch /var/lock/subsys/apmd echo return $RETVAL } stop() { echo -n $"Shutting down APM daemon: " killproc apmd RETVAL=$? [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/apmd echo return $RETVAL } dostatus() { status apmd } restart() { stop start } condrestart() { [ -e /var/lock/subsys/apmd ] && restart || : } # See how we were called. case "$1" in start) start ;; stop) stop ;; status) dostatus ;; restart|reload) restart ;; condrestart) condrestart ;; *) echo $"Usage: apmd {start|stop|status|restart|reload|condrestart}" exit 1 esac exit $RETVAL