Sophie

Sophie

distrib > Mandriva > 2006.0 > i586 > media > main-src > by-pkgid > 8df245dec4acc878e66c399f5dc96419 > files > 1

iplog-2.2.3-9mdk.src.rpm

#!/bin/sh
#
#	This shell script takes care of starting and stopping
#	iplog.
#
# chkconfig: 345 90 08
# description:  This program lets you log tcp, udp, and icmp 
#               connections in syslog, along with the hostname.
#

#
# Configuration is in /etc/iplog.conf
#

# 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.
        gprintf "Starting %s: " "iplog"
	daemon iplog
	touch /var/lock/subsys/iplog
        echo
        ;;
  stop)
        # Stop daemons.
        gprintf "Shutting down %s: " "iplog"
	killproc iplog
	rm -f /var/lock/subsys/iplog
        echo
        ;;
  restart|reload)
	$0 stop
	$0 start
	;;
  status)
	status iplog
	;;

  *)
	gprintf "Usage: %s %s\n" "iplog" "{start|stop|restart|status}"
	exit 1
esac

exit $RETVAL