From 94895130d192859f0778db320b9834c5d35c6d46 Mon Sep 17 00:00:00 2001 From: johannst Date: Mon, 26 Feb 2018 21:08:01 +0100 Subject: added check of operation state for wifi.sh; fixed typo in eth.sh --- scripts/wifi.sh | 3 +++ 1 file changed, 3 insertions(+) (limited to 'scripts/wifi.sh') diff --git a/scripts/wifi.sh b/scripts/wifi.sh index 51262c6..8cd8f41 100755 --- a/scripts/wifi.sh +++ b/scripts/wifi.sh @@ -5,6 +5,9 @@ if="${BLOCK_INSTANCE:-wlp3s0}" [[ ! -d /sys/class/net/${if} ]] && exit 0 +# operstate: down, up +[[ "$(cat /sys/class/net/$if/operstate)" = 'down' ]] && exit 0 + show_ap_mac=0 show_ap_quality=0 show_ap_name=0 -- cgit v1.2.3