#!/bin/sh # # fprobe This shell script takes care of starting and stopping # the fprobe daemon. # # chkconfig: - 65 35 # description: fprobe netflow generator # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network # Check that networking is up. [ ${NETWORKING} = "no" ] && exit 0 [ -f /usr/local/sbin/fprobe ] || exit 0 RETVAL=0 #OPTIONS="-i eth0 -a 192.168.5.1 -l 1 ginger.local.senie.com:2055" OPTIONS="-i eth0 -e 60 -a 82.196.15.197 83.70.199.180:2055" start() { # Start daemons. echo -n "Starting fprobe: " #daemon /usr/local/sbin/fprobe $OPTIONS /usr/local/sbin/fprobe $OPTIONS ps aux | grep fpor RETVAL=$? echo [ $RETVAL -eq 0 ] && touch /var/lock/subsys/fprobe return $RETVAL } stop() { # Stop daemons. echo -n "Shutting down fprobe: " killproc fprobe RETVAL=$? echo [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/fprobe return $RETVAL } # See how we were called. case "$1" in start) start ;; stop) stop ;; restart|reload) stop start RETVAL=$? ;; *) echo "Usage: fprobe.rc {start|stop|restart}" exit 1 esac exit $RETVAL