aboutsummaryrefslogtreecommitdiff
path: root/examples/var_service/inetd/run
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-11-08 00:55:39 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2009-11-08 00:55:39 +0100
commitf5c2f72917e5f75634665f67a6105e1e82ece875 (patch)
treee1c6a85ae214ad33d4bf38e03f0a3548ad1525f6 /examples/var_service/inetd/run
parent44f8d013994c20a53836a8768bd488130c7df9bc (diff)
downloadbusybox-w32-f5c2f72917e5f75634665f67a6105e1e82ece875.tar.gz
busybox-w32-f5c2f72917e5f75634665f67a6105e1e82ece875.tar.bz2
busybox-w32-f5c2f72917e5f75634665f67a6105e1e82ece875.zip
add more service examples
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'examples/var_service/inetd/run')
-rwxr-xr-xexamples/var_service/inetd/run17
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 000000000..910c1b331
--- /dev/null
+++ b/examples/var_service/inetd/run
@@ -0,0 +1,17 @@
1#!/bin/sh
2
3#exec >/dev/null
4exec 2>&1
5exec </dev/null
6
7echo "* Starting inetd [$$]"
8exec \
9env - PATH="$PATH" \
10softlimit \
11inetd -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)