684537f3e7
SVN-Revision: 39308
6 lines
139 B
Bash
Executable File
6 lines
139 B
Bash
Executable File
#!/bin/sh
|
|
# Make dnsmasq reread hostfile
|
|
|
|
pid=$(pidof dnsmasq)
|
|
[ "$(readlink /proc/$pid/exe)" = "/usr/sbin/dnsmasq" ] && kill -SIGHUP $pid
|