#! /bin/sh
# Copyright (c) 1995-2001 SuSE GmbH Nuernberg, Germany.
#
# Author: Hannes Reinecke <feedback@suse.de>
#
# init.d/scsi-eventd
#
#   and symbolic its link
#
# /usr/sbin/rcscsi-eventd
#
### BEGIN INIT INFO
# Provides:          scsi-eventd
# Required-Start:    $syslog
# Required-Stop:     $syslog
# Default-Start:     3 5
# Default-Stop:	     0 1 2 4 6
# Short-Description: Starts SCSI event daemon
# Description:       SCSI event daemon
### END INIT INFO

PATH=/bin:/usr/bin:/sbin:/usr/sbin
DAEMON=/sbin/scsi-eventd
PIDFILE=/var/run/scsi-eventd.pid

. /etc/rc.status

# First reset status of this service
rc_reset

case "$1" in
    start)
	echo -n "Starting scsi-eventd"

	if checkproc -p $PIDFILE $DAEMON; then
		$DAEMON -p $PIDFILE -c /etc/scsi-event.conf
	fi
	
	# Remember status and be verbose
	rc_status -v
	sleep 1
	;;
    stop)
	echo -n "Shutting down scsi-eventd"
	killproc -p $PIDFILE $DAEMON

	# Remember status and be verbose
	rc_status -v
	;;
    try-restart)
	## Stop the service and if this succeeds (i.e. the 
	## service was running before), start it again.
        $0 status >/dev/null &&  $0 restart

	# Remember status and be quiet
	rc_status
	;;
    restart|force-reload)
	## Stop the service and regardless of whether it was
	## running or not, start it again.
	$0 stop
	$0 start

	# Remember status and be quiet
	rc_status
	;;
    reload)
	## Like force-reload, but if daemon does not support
	## signalling, do nothing (!)

	# If it does not support reload:
	exit 3
	;;
    status)
	echo -n "Checking for scsi-eventd: "

	checkproc -p $PIDFILE $DAEMON

	rc_status -v
	;;
    probe)
	## Optional: Probe for the necessity of a reload,
	## give out the argument which is required for a reload.
	;;
    *)
	echo "Usage: $0 {start|stop|status|try-restart|restart|force-reload|reload|probe}"
	exit 1
	;;
esac
rc_exit
