diff options
Diffstat (limited to 'package/network/services/odhcpd/files/odhcpd-update')
-rwxr-xr-x | package/network/services/odhcpd/files/odhcpd-update | 4 |
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 20980f2..e17cd0b 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 |