kumquat-buildroot/target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S42httpd

17 lines
215 B
Plaintext
Raw Normal View History

2007-07-29 09:15:35 +02:00
#!/bin/sh
HTTPD=/usr/sbin/httpd
echo -n "Starting httpd:"
if [ ! -x "${HTTPD}" ]; then
echo " missing"
exit 1
fi
if ${HTTPD} -h /www > /dev/null 2> /dev/null; then
echo " done"
else
echo " failed"
exit 1
fi