run 336 B

1234567891011121314151617
  1. #!/bin/sh
  2. #exec >/dev/null
  3. exec 2>&1
  4. exec </dev/null
  5. echo "* Starting inetd [$$]"
  6. exec \
  7. env - PATH="$PATH" \
  8. softlimit \
  9. inetd -f -e "$PWD/inetd.conf"
  10. # inetd [-f] [-q len] [conf]
  11. # -f Run in foreground
  12. # -e Log to stderr (default is syslog)
  13. # -q N Set the size of the socket listen queue to N
  14. # (default: 128)