Sophie

Sophie

distrib > Mandriva > 9.1 > ppc > by-pkgid > 294ad1db8c0268bf299eb5dbfdce14f0 > files > 1

arpwatch-2.1a11-2mdk.ppc.rpm

#! /bin/sh
#
# chkconfig: 2345 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

# Check that networking is up.
if [ ${NETWORKING} = "no" ]
then
	exit 0
fi

# See how we were called.
case "$1" in
  start)
	gprintf "Starting arpwatch: "
	daemon arpwatch
	echo
	touch /var/lock/subsys/arpwatch
	;;
  stop)
	gprintf "Stopping arpwatch: "
	killproc arpwatch
	echo
	rm -f /var/lock/subsys/arpwatch
	;;
  status)
	status arpwatch
	;;
  restart|reload)
	$0 stop
	$0 start
	;;
  *)
	gprintf "Usage: arpwatch {start|stop|status|restart|reload}\n"
	exit 1
esac

exit 0