restore the /tmp/resolv.conf symlink when stopping dnsmasq
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 7 Sep 2008 15:22:25 +0000 (15:22 +0000)
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 7 Sep 2008 15:22:25 +0000 (15:22 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12546 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/dnsmasq/files/dnsmasq.init

index 79e57d5f3cee63590fe4606e0e5d1f3cea2c61b8..8643349573d1064756e886a7e64d922a461af263 100644 (file)
@@ -280,5 +280,10 @@ start() {
 }
 
 stop() {
+       [ -f /tmp/resolv.conf ] && {
+               rm -f /tmp/resolv.conf
+               ln -s /tmp/resolv.conf.auto /tmp/resolv.conf
+       }
        killall dnsmasq
+       return 0
 }