blob: f8e7813e65e3894e107123ef031b73df2d5b7945 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
HTTPD=/usr/sbin/httpd
echo -n "Starting httpd: "
if [ ! -x "${HTTPD}" ]; then
echo "missing"
exit 1
fi
if ${HTTPD} -h /www; then
echo "done"
else
echo "failed"
exit 1
fi
|