From 93971a0567826e9ddba25fb72a49ca21ddf4fd5d Mon Sep 17 00:00:00 2001 From: John Klug Date: Fri, 12 Jan 2018 10:44:35 -0600 Subject: Only run pre-up scripts if hostapd is configured. --- recipes-connectivity/hostapd/hostap-daemon-2.6/init | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recipes-connectivity/hostapd/hostap-daemon-2.6/init b/recipes-connectivity/hostapd/hostap-daemon-2.6/init index bb3319b..0f10a7a 100755 --- a/recipes-connectivity/hostapd/hostap-daemon-2.6/init +++ b/recipes-connectivity/hostapd/hostap-daemon-2.6/init @@ -13,12 +13,12 @@ set -e case "$1" in start) - if [[ -n $PREUP ]] ; then - bash -c "$PREUP" - fi if [ "$START_ON_BOOT" != "yes" ]; then exit 0 fi + if [[ -n $PREUP ]] ; then + bash -c "$PREUP" + fi echo -n "Starting $DESC: " start-stop-daemon -S -x $DAEMON -- $ARGS if [[ -n $POSTUP ]] ; then -- cgit v1.2.3