From 4b7cf7cd2b341f7681ed41a1af0e8abfe6f52540 Mon Sep 17 00:00:00 2001 From: Javier Viguera Date: Fri, 14 Jul 2017 18:05:46 +0200 Subject: [PATCH] hostapd: cosmetic, fix overlapped messages on stop When bringing down the wireless interface used for hostapd, the messages overlap: # ifdown wlan1 Stopping HOSTAP Daemon: stopped /usr/sbin/hostapd (pid 569) hostapd. Adding the 'quiet' option to start-stop-daemon command fixes the cosmetic issue. # ifdown wlan1 Stopping HOSTAP Daemon: hostapd. Signed-off-by: Javier Viguera --- meta-digi-dey/recipes-connectivity/hostapd/hostapd/init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-digi-dey/recipes-connectivity/hostapd/hostapd/init b/meta-digi-dey/recipes-connectivity/hostapd/hostapd/init index cfd6eee7b..6f5942c72 100644 --- a/meta-digi-dey/recipes-connectivity/hostapd/hostapd/init +++ b/meta-digi-dey/recipes-connectivity/hostapd/hostapd/init @@ -34,7 +34,7 @@ case "$1" in ;; stop) echo -n "Stopping $DESC: " - start-stop-daemon -K --oknodo -x $DAEMON -p ${PIDFILE} + start-stop-daemon -K --oknodo -q -x $DAEMON -p ${PIDFILE} echo "$NAME." ;; restart)