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

17 lines
180 B
Bash

#!/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