kumquat-buildroot/target/device/Atmel/atngw100/target_skeleton/etc/init.d/S40telnetd
2008-03-06 18:59:14 +00:00

17 lines
201 B
Bash
Executable File

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