kumquat-buildroot/target/device/Atmel/atngw100/target_skeleton/etc/init.d/S21dnsmasq
2007-07-29 07:17:01 +00:00

19 lines
198 B
Bash
Executable File

#!/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