kumquat-buildroot/target/device/Atmel/atngw100/target_skeleton/etc/init.d/S41inetd
2007-07-29 07:17:01 +00:00

17 lines
207 B
Bash
Executable File

#!/bin/sh
INETD=/usr/sbin/inetd
echo -n "Starting inted:"
if [ ! -x "${INETD}" ]; then
echo " missing"
exit 1
fi
if ${INETD} > /dev/null 2> /dev/null; then
echo " done"
else
echo " failed"
exit 1
fi