#!/bin/sh
. /boot.conf
test "$LOG_START" && echo "<*> Executing '$0 $*'"

if test "$INETD_USER"; then
    test "$LOG_STAGE" && echo "* Starting inetd (user: root)" # $INETD_USER)"
    env - inetd $INETD_COMMANDLINE \
    || echo "! inetd failure"
fi

exit 0
