]> git.pld-linux.org Git - packages/arpwatch.git/blobdiff - arpwatch.init
- fixed previous change
[packages/arpwatch.git] / arpwatch.init
index c0eb05242f47c7ed6f956793acee5c75c5ce8a08..7eb7196d1ffe4abc0f10a46411771a5f429764ae 100644 (file)
@@ -1,44 +1,74 @@
 #!/bin/sh
 #
-# chkconfig: - 55 45
+# chkconfig: 345 55 45
 # description: The arpwatch daemon attempts to keep track of ethernet/ip \
 #              address pairings.
-# processname: arpwatch
+# processname: arpwatch
 
-# Source function library.
+# Source function library
 . /etc/rc.d/init.d/functions
 
-# Get config.
+# Get network config
 . /etc/sysconfig/network
 
+# Get service config
+[ -f /etc/sysconfig/arpwatch ] && . /etc/sysconfig/arpwatch
+
 # Check that networking is up.
-if [ "${NETWORKING}" = "no" ]
-then
+if is_yes "${NETWORKING}"; then
+       if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then
+               msg_network_down "arpwatch"
+               exit 1
+       fi
+else
        exit 0
 fi
 
+RETVAL=0
 # See how we were called.
 case "$1" in
   start)
-       show Starting arpwatch:
-       daemon +2 arpwatch
-       touch /var/lock/subsys/arpwatch
+       # Check if the service is already running?
+       if [ ! -f /var/lock/subsys/arpwatch ]; then
+               if [ -z "$INTERFACES" ]; then
+                       INTERFACES="`/sbin/ip link show \
+                         | egrep '^[^ ].*' |egrep -v "NOARP|LOOPBACK" \
+                         |sed 's/[0-9]*: \([a-zA-Z0-9]*\)[@:].*/\1/'|xargs`"
+               fi
+               [ ! -z "$NETWORKS" ] && NETWORKS="-n $NETWORKS"
+               for IFC in $INTERFACES; do
+                       msg_starting "arpwatch ($IFC)"
+                       touch /var/lib/arpwatch/$IFC.dat
+                       chown 2:2 /var/lib/arpwatch/$IFC.dat
+                       daemon arpwatch $NETWORKS -i $IFC -f /var/lib/arpwatch/$IFC.dat -u daemon
+                       RETVAL=$?
+                       [ $RETVAL -eq 0 ] && touch /var/lock/subsys/arpwatch
+               done
+       else
+               msg_already_running "arpwatch"
+       fi
        ;;
   stop)
-       show Stopping arpwatch: 
-       killproc arpwatch
-       rm -f /var/lock/subsys/arpwatch
+       if [ -f /var/lock/subsys/arpwatch ]; then
+               msg_stopping "arpwatch"
+               killproc arpwatch
+               rm -f /var/lock/subsys/arpwatch >/dev/null 2>&1
+       else
+               msg_not_running "arpwatch"
+       fi      
        ;;
   status)
        status arpwatch
+       exit $?
        ;;
-  restart|reload)
+  restart|force-reload)
        $0 stop
        $0 start
+       exit $?
        ;;
   *)
-       echo "Usage: $0 {start|stop|status|restart|reload}"
-       exit 1
+       msg_usage "$0 {start|stop|restart|force-reload|status}"
+       exit 3
 esac
 
-exit 0
+exit $RETVAL
This page took 0.078578 seconds and 4 git commands to generate.