blob: f809b68fce071086a1671d8bc2efbc02a42db82f [file] [log] [blame]
Simon Kelleyc72daea2012-01-05 21:33:27 +00001#!/bin/sh
2set -e
3
4if [ "$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
10fi
11
12exit 0
13
14