kumquat-buildroot/target/device/Atmel/atngw100/target_skeleton/etc/init.d/S41inetd

17 lines
207 B
Plaintext
Raw Normal View History

2007-07-29 09:17:01 +02:00
#!/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