blob: 910c1b331604b9d2b7732275cb130a7e09a4a986 [file] [log] [blame]
Denys Vlasenkof5c2f722009-11-08 00:55:39 +01001#!/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)