kumquat-buildroot/target/device/Atmel/atngw100/target_skeleton/etc/init.d/S21dnsmasq

19 lines
198 B
Plaintext
Raw Normal View History

2007-07-29 09:17:01 +02:00
#!/bin/sh
DNSMASQ=/usr/sbin/dnsmasq
echo -n "Starting dnsmasq: "
if [ ! -x "${DNSMASQ}" ]; then
echo "missing"
exit 1
fi
if ${DNSMASQ}; then
echo "done"
else
echo "failed"
exit 1
fi
exit 0