#!/bin/sh
#
# chkconfig: - 55 55
# description: The routed daemon allows for automatic IP router table \
#	       updated via the RIP protocol. While RIP is widely used \
#              on small networks, more complex routing protocls are \
#              needed for complex networks.
# processname: routed
# config: /etc/sysconfig/routed
# config: /etc/gateways

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

# Get config.
. /etc/sysconfig/network

# Check that networking is up.
if is_no "${NETWORKING}"; then
	msg_Network_Down routed
	exit 1
fi

# Get routed config
[ -f /etc/sysconfig/routed ] && . /etc/sysconfig/routed

# See how we were called.
case "$1" in
  start)
	if [ ! -f /var/lock/subsys/routed ]; then
		msg_starting "routed (RIP)"
		case $SILENT in true|yes) silent=-q ;; *) silent= ;; esac
		case $EXPORT_GATEWAY in true|yes) export=-g ;; *) export= ;; esac
		daemon routed $silent $export
		RETVAL=$?
		if [ $RETVAL -eq 0 ]; then
			touch /var/lock/subsys/routed
			RETVAL=1
		fi
	else
		msg_Already_Running routed
		exit 1
	fi
	;;
  stop)
	if [ -f /var/lock/subsys/routed ]; then
		msg_stopping "routed (RIP)"
		killproc routed
		rm -f /var/lock/subsys/routed >/dev/null 2>&1
	else
		msg_Not_Running routed
		exit 1
	fi	
	;;
  status)
	status routed
	;;
  reload|restart|force-reload)
	$0 stop
	$0 start
	;;
  *)
	msg_Usage "$0 {start|stop|status|restart|reload|force-reload}"
	exit 1
esac

exit $RETVAL
