kumquat-buildroot/target/device/Atmel/atngw100/target_skeleton/etc/init.d/S41inetd
2007-10-12 12:34:04 +00:00

17 lines
180 B
Bash
Executable File

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