Dnsmasq: update to 2.66TEST16
[tomato.git] / release / src / router / dnsmasq / debian / prerm
blobf809b68fce071086a1671d8bc2efbc02a42db82f
1 #!/bin/sh
2 set -e
4 if [ "$1" = "remove" ]; then
5 if [ -x /usr/sbin/invoke-rc.d ] ; then
6 invoke-rc.d dnsmasq stop || true
7 else
8 /etc/init.d/dnsmasq stop || true
9 fi
12 exit 0