#! /bin/sh

. $TS_GLOBAL

case "$1" in  
init)
    pkg_set_init_flag $PACKAGE
    xinetd -filelog /var/log/xinetd -stayalive -reuse -pidfile /var/lock/xinetd.pid
    ;;
help)
    echo "Usage: $0 init"
    ;;
  *)
    exit 1
    ;;
esac

exit 0
