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