summaryrefslogtreecommitdiff
path: root/target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S41inetd
blob: cf85c13f11bfcedf4643e445ad7b46790a095ced (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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