[openwrt/openwrt] hostapd: pass respawn settings when registering the service

LEDE Commits lede-commits at lists.infradead.org
Tue Dec 22 13:32:09 EST 2020


nbd pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/ceb612e463fc0dc6fbd7be66dc1a244544213c24

commit ceb612e463fc0dc6fbd7be66dc1a244544213c24
Author: John Crispin <john at phrozen.org>
AuthorDate: Fri Dec 11 08:07:40 2020 +0100

    hostapd: pass respawn settings when registering the service
    
    When hostapd gets restarted to often/quickly will cause procd to not restart it
    anymore. it will think that hapd is in a crash loop.
    
    Signed-off-by: John Crispin <john at phrozen.org>
    Signed-off-by: Felix Fietkau <nbd at nbd.name> [adjust respawn time]
---
 package/network/services/hostapd/files/wpad.init | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/network/services/hostapd/files/wpad.init b/package/network/services/hostapd/files/wpad.init
index 3198e9801f..8471796774 100644
--- a/package/network/services/hostapd/files/wpad.init
+++ b/package/network/services/hostapd/files/wpad.init
@@ -11,7 +11,7 @@ start_service() {
 		mkdir -p /var/run/hostapd
 		procd_open_instance hostapd
 		procd_set_param command /usr/sbin/hostapd -s -g /var/run/hostapd/global
-		procd_set_param respawn
+		procd_set_param respawn 3600 1 0
 		procd_close_instance
 	fi
 
@@ -19,7 +19,7 @@ start_service() {
 		mkdir -p /var/run/wpa_supplicant
 		procd_open_instance supplicant
 		procd_set_param command /usr/sbin/wpa_supplicant -n -s -g /var/run/wpa_supplicant/global
-		procd_set_param respawn
+		procd_set_param respawn 3600 1 0
 		procd_close_instance
 	fi
 }



More information about the lede-commits mailing list