#!/bin/sh

base=inetd

# See how we were called.
case "$1" in
  start)
		/usr/sbin/$base
        ;;
  stop)
	pid=`/bin/pidof $base`
	if [ -n "$pid" ]; then
		kill -9 $pid
	fi
        ;;
esac

exit 0
