#! /bin/sh # # chkconfig: - 55 45 # description: The arpwatch daemon attempts to keep track of ethernet/ip \ # address pairings. # processname: arpwatch # Source function library. . /etc/rc.d/init.d/functions # Get config. . /etc/sysconfig/network if [ -f /etc/sysconfig/arpwatch ];then . /etc/sysconfig/arpwatch fi RETVAL=0 prog="arpwatch" start () { # Check that networking is up. [ "$NETWORKING" = "no" ] && exit 1 echo -n $"Starting $prog: " daemon arpwatch $OPTIONS RETVAL=$? echo [ $RETVAL -eq 0 ] && touch /var/lock/subsys/arpwatch } stop () { echo -n $"Stopping $prog: " killproc arpwatch RETVAL=$? echo [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/arpwatch } restart () { stop start } # See how we were called. case "$1" in start) start ;; stop) stop ;; status) status arpwatch RETVAL=$? ;; restart|reload) restart ;; condrestart) [ -f /var/lock/subsys/arpwatch ] && restart || : ;; *) echo $"Usage: $0 {start|stop|status|restart|reload|condrestart}" RETVAL=3 esac exit $RETVAL