#!/bin/sh
#
#	This shell script takes care of starting and stopping
#       tcplog and icmplog.
#
# chkconfig: 345 50 50
# description:  These three programs let you log tcp, udp, and icmp 
#		connections in syslog, along with the hostname. They are just 
#		something whipped up quickly, and could be improved alot - 
#		especially the icmp logging program. 
#

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

# Source networking configuration.
. /etc/sysconfig/network

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

# See how we were called.
case "$1" in
  start)
	# Start daemons.
	echo -n "Starting iplog: "
	daemon icmplog
	daemon tcplog
        daemon udplog
	echo
	touch /var/lock/subsys/iplog
        ;;
  stop)
	# Stop daemons.
	echo -n "Shutting down iplog: "
	killproc icmplog
	killproc tcplog
	killproc udplog
	echo
	rm -f /var/lock/subsys/iplog
	;;
  restart)
        $0 stop
        $0 start
        ;;
  status)
        status icmplog
	status tcplog
	status udplog
        ;;
  *)
	echo "Usage: iplog {start|stop|restart|status}"
	exit 1
esac

exit 0
