Sophie

Sophie

distrib > Mandriva > 2009.0 > i586 > by-pkgid > 3872883da18756b145c3c40e8c5073d0 > files > 8

ossec-hids-1.4-3mdv2009.0.src.rpm

#!/bin/bash
#
# ossec-hids      This shell script takes care of starting and stopping
#                 the OSSEC-HIDS daemon(s).
#
# chkconfig: 2345 99 15
# description:    OSSEC-HIDS is an Open Source Host-based Intrusion \
#                 Detection System.
# config: /etc/ossec-init.conf

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

# Source networking configuration.
. /etc/sysconfig/network

# Check that networking is up.
[ ${NETWORKING} = "no" ] && exit 1

# Check for binaries and configs
[ -x /var/ossec/bin/ossec-control ] && {
  OSSEC=/var/ossec/bin/ossec-control
  SHORT=ossec-hids
}
[ -z "$OSSEC" ] && exit 1
[ -r /etc/ossec-init.conf ] || exit 1


RETVAL=0

start() {
	# Start daemons.
	echo -n $"Starting $SHORT: "
	initlog -q -c "$OSSEC start"
	RETVAL=$?

	[ $RETVAL -eq 0 ] && touch /var/lock/subsys/$SHORT

	[ $RETVAL -eq 0 ] && success $"$SHORT startup" || failure $"$SHORT startup"
	echo
	return $RETVAL
}

stop() {
	# Stop daemons.
	echo -n $"Shutting down $SHORT: "
	initlog -q -c "$OSSEC stop"
	RETVAL=$?

	[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/$SHORT

	[ $RETVAL -eq 0 ] && success $"$SHORT shutdown" || failure $"$SHORT shutdown"
	echo
	return $RETVAL
}

rhstatus() {
	$OSSEC status
	RETVAL=0
	return $RETVAL
}

restart() {
	stop
	sleep 10
	start
}


# See how we were called.
case "$1" in
	start)
	  start
	  ;;
	stop)
	  stop
	  ;;
	status)
	  rhstatus
	  ;;
	restart)
	  restart
	  ;;
	condrestart)
	  if [ -e /var/lock/subsys/$SHORT ]; then restart; fi
	  ;;
	reload)
	  restart
	  ;;
	*)
	  echo $"Usage: ossec-hids {start|stop|status|restart|condrestart|reload}"
	  exit 1
esac

exit $RETVAL