inetd.init 441 B

1234567891011121314151617181920212223242526272829
  1. #!/bin/sh
  2. #PKG busybox
  3. #INIT 41
  4. . /etc/rc.conf
  5. case $1 in
  6. autostart)
  7. test x"${inetd:-NO}" = x"NO" && exit 0
  8. test -e /etc/inetd.conf || exit 0
  9. test x"$inetd" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start
  10. exec sh $0 start
  11. ;;
  12. start)
  13. /usr/sbin/inetd
  14. ;;
  15. autostop)
  16. ;;
  17. stop)
  18. kill $(pgrep -f /usr/sbin/inetd)
  19. ;;
  20. restart)
  21. sh $0 stop
  22. exec sh $0 start
  23. ;;
  24. *)
  25. echo "Usage: $0 {start | stop | restart}"
  26. exit 1
  27. ;;
  28. esac
  29. exit $?