17 lines
180 B
Bash
Executable File
17 lines
180 B
Bash
Executable File
#!/bin/sh
|
|
|
|
INETD=/usr/sbin/inetd
|
|
|
|
echo -n "Starting inted: "
|
|
if [ ! -x "${INETD}" ]; then
|
|
echo "missing"
|
|
exit 1
|
|
fi
|
|
|
|
if ${INETD}; then
|
|
echo "done"
|
|
else
|
|
echo "failed"
|
|
exit 1
|
|
fi
|