#! /bin/sh
# chkconfig: 345 56 56
# description: A RIP routing engine for use with Zebra
# processname: ripd
# config: /etc/sysconfig/ripd
# config: /etc/ripd.conf

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

# Source networking configuration.
SourceIfNotEmpty /etc/sysconfig/network && [ "$NETWORKING" != no ] || exit

# Check ripd config
[ -f /etc/zebra/ripd.conf ] || exit 0

RETVAL=0
LOCKFILE=/var/lock/subsys/ripd

start()
{
	echo -n "Starting RIP routing services: "

	# start daemons
	daemon ripd --daemon

	RETVAL=$?
	[ $RETVAL -eq 0 ] && touch "$LOCKFILE"
	echo
}	

stop()
{
	echo -n "Shutting down RIP routing services: "
	
	# stop daemons
	killproc ripd
	
	RETVAL=$?
	[ $RETVAL -eq 0 ] && rm -f "$LOCKFILE"
	echo
}

restart()
{
	stop
	start
}

# See how we were called.
case "$1" in
  start)
	start
	;;
  stop)
	stop
	;;
  reload)
	restart
	;;
  restart)
	restart
	;;
  condstop)
	# Stop the servce if it is already running
	if [ -e "$LOCKFILE" ]; then
	 stop
	fi
	;;
  condrestart)
	# Restart the servce if it is already running
	if [ -e "$LOCKFILE" ]; then
 	 restart
	fi
	;;
  status)
	# report the status of the daemons in free-form format
	status ripd
	RETVAL=$?
	;;
  *)
	echo "Usage: ${0##*/} {start|stop|reload|restart|condstop|condrestart|status}"
	RETVAL=1
esac

exit $RETVAL
