Simon Kelley | c72daea | 2012-01-05 21:33:27 +0000 | [diff] [blame] | 1 | #!/bin/sh |
2 | set -e | ||||
3 | |||||
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 | ||||
10 | fi | ||||
11 | |||||
12 | exit 0 | ||||
13 | |||||
14 |