1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-19 23:28:29 +02:00

dnsmasq: reload config if host name is modified

If the hostname in /etc/config/system is modified the dnsmasq will not
reread the update host file under /tmp/hosts/dhcp.$cfg.

Signed-off-by: Florian Eckert <Eckert.Florian@googlemail.com>
This commit is contained in:
Florian Eckert 2016-11-30 09:08:21 +01:00 committed by John Crispin
parent 960c477432
commit 854459a2f9

View File

@ -785,7 +785,7 @@ dnsmasq_stop()
service_triggers()
{
procd_add_reload_trigger "dhcp"
procd_add_reload_trigger "dhcp" "system"
procd_add_raw_trigger "interface.*" 2000 /etc/init.d/dnsmasq reload
}
@ -825,6 +825,7 @@ start_service() {
reload_service() {
rc_procd start_service "$@"
killall -HUP dnsmasq
return 0
}