#!/bin/sh # # chkconfig: 2345 35 65 # description: apmd is used for monitoring batery 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 # Source function library. . /etc/rc.d/init.d/functions if [ ! -f /proc/apm ]; then modprobe apm && echo $(nls "No kernel APM support")'!'; exit 1 fi CONFIG=/etc/sysconfig/apmd # See how we were called. case "$1" in start) # Check if the service is already running? if [ ! -f /var/lock/subsys/apmd ]; then msg_starting APM [ -r "$CONFIG" ] && . "$CONFIG" daemon apmd "$APMD_OPTIONS" touch /var/lock/subsys/apmd else msg_already_running APM exit 1 fi ;; stop) if [ -f /var/lock/subsys/apmd ]; then msg_stopping APM killproc apmd rm -f /var/lock/subsys/apmd else msg_not_running APM exit 1 fi ;; status) status apmd ;; restart|reload) $0 stop $0 start ;; *) msg_usage "$0 {start|stop|restart|reload|status}" exit 1 esac