Parcourir la source

dnsmasq: fix service reload

The SIGHUP also got sent to the reload script making it bail out
with an error

Revert "dnsmasq: reload config if host name is modified"
This reverts commit 854459a2f923376e0e509ebc0fb8ff90e9f13c02.

Reported-by: Hans Dedecker <[email protected]>
Signed-off-by: John Crispin <[email protected]>
John Crispin il y a 9 ans
Parent
commit
93227e4d3f
1 fichiers modifiés avec 1 ajouts et 2 suppressions
  1. 1 2
      package/network/services/dnsmasq/files/dnsmasq.init

+ 1 - 2
package/network/services/dnsmasq/files/dnsmasq.init

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