aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/odhcpd/files/odhcpd-update
diff options
context:
space:
mode:
Diffstat (limited to 'package/network/services/odhcpd/files/odhcpd-update')
-rwxr-xr-xpackage/network/services/odhcpd/files/odhcpd-update4
1 files changed, 3 insertions, 1 deletions
diff --git a/package/network/services/odhcpd/files/odhcpd-update b/package/network/services/odhcpd/files/odhcpd-update
index 20980f2228..e17cd0bfff 100755
--- a/package/network/services/odhcpd/files/odhcpd-update
+++ b/package/network/services/odhcpd/files/odhcpd-update
@@ -1,3 +1,5 @@
#!/bin/sh
# Make dnsmasq reread hostfile
-killall -SIGHUP dnsmasq
+
+pid=$(pidof dnsmasq)
+[ "$(readlink /proc/$pid/exe)" = "/usr/sbin/dnsmasq" ] && kill -SIGHUP $pid