#!/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

# See how we were called.
case "$1" in
  start)
	;;
  stop)
	;;
  *)
	echo "Usage: apmd {start|stop}"
	exit 1
esac

exit $RETVAL
