Sophie

Sophie

distrib > * > 2008.0 > x86_64 > by-pkgid > b9fd683dbd61cf5c85ffeadacf495b31 > files > 8

acpid-1.0.6-1.1mdv2008.0.src.rpm

#!/bin/bash
#
#	/etc/rc.d/init.d/acpid
#
# Starts the acpi daemon
#
# chkconfig: 345 14 56
# description: Listen and dispatch ACPI events from the kernel
# processname: acpid
#
### BEGIN INIT INFO
# Provides: acpid
# Required-Start: acpi
# Required-Stop: acpi
# Default-Start: 3 4 5
# Short-Description: Starts the acpi daemon
# Description: Listen and dispatch ACPI events from the kernel
### END INIT INFO

# Source function library.
. /etc/rc.d/init.d/functions

DAEMON=acpi
PROGNAME=${DAEMON}d
BATTERY=/etc/acpi/actions/lm_battery.sh
test -x /usr/sbin/$PROGNAME || exit 0
test -f /proc/acpi/event || exit 0

RETVAL=0

#
# See how we were called.
#

start() {
	# Check if it is already running
	if [ ! -f /var/lock/subsys/$PROGNAME ]; then
	    # lauch battery hook if present
	    if [ -x $BATTERY ] && ls /proc/acpi/battery/BAT* > /dev/null 2>&1; then
		$BATTERY >> /var/log/acpid 2>&1 &
	    fi
	    echo -n "Starting $DAEMON daemon: "
	    daemon /usr/sbin/$PROGNAME
	    RETVAL=$?
	    [ $RETVAL -eq 0 ] && touch /var/lock/subsys/$PROGNAME
	    echo
	fi
	return $RETVAL
}

stop() {
	echo -n "Stopping $DAEMON daemon: "
	killproc /usr/sbin/$PROGNAME
	RETVAL=$?
	[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/$PROGNAME
	echo
        return $RETVAL
}


restart() {
	stop
	start
}	

reload() {
	trap "" SIGHUP
	killall -HUP $PROGNAME
}	

case "$1" in
start)
	start
	;;
stop)
	stop
	;;
reload)
	reload
	;;
restart)
	restart
	;;
condrestart)
	if [ -f /var/lock/subsys/$PROGNAME ]; then
	    restart
	fi
	;;
status)
	status $PROGNAME
	;;
*)
	INITNAME=`basename $0`
	echo "Usage: $INITNAME {start|stop|restart|condrestart|status}"
	exit 1
esac

exit $RETVAL