diff options
Diffstat (limited to 'examples/var_service/inetd/run')
-rwxr-xr-x | examples/var_service/inetd/run | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/examples/var_service/inetd/run b/examples/var_service/inetd/run new file mode 100755 index 0000000..910c1b3 --- /dev/null +++ b/examples/var_service/inetd/run @@ -0,0 +1,17 @@ +#!/bin/sh + +#exec >/dev/null +exec 2>&1 +exec </dev/null + +echo "* Starting inetd [$$]" +exec \ +env - PATH="$PATH" \ +softlimit \ +inetd -f -e "$PWD/inetd.conf" + +# inetd [-f] [-q len] [conf] +# -f Run in foreground +# -e Log to stderr (default is syslog) +# -q N Set the size of the socket listen queue to N +# (default: 128) |