summaryrefslogtreecommitdiffstats
path: root/usr/lib/autowifi
diff options
context:
space:
mode:
Diffstat (limited to 'usr/lib/autowifi')
-rw-r--r--usr/lib/autowifi/lib/network2
-rw-r--r--usr/lib/autowifi/lib/plugin_core2
2 files changed, 2 insertions, 2 deletions
diff --git a/usr/lib/autowifi/lib/network b/usr/lib/autowifi/lib/network
index c21f0db0..a0105120 100644
--- a/usr/lib/autowifi/lib/network
+++ b/usr/lib/autowifi/lib/network
@@ -1,7 +1,7 @@
#!/bin/sh
check_gateway(){
- ping -c 1 -w 5 $(ip route | awk '/default/{print $3}')
+ ping -c 1 -w 5 $(ip route | awk '/default/{print $3}') >/dev/null
}
check_internet(){
# TODO determine the loader, either wget or curl
diff --git a/usr/lib/autowifi/lib/plugin_core b/usr/lib/autowifi/lib/plugin_core
index 700d15f8..e79a3c05 100644
--- a/usr/lib/autowifi/lib/plugin_core
+++ b/usr/lib/autowifi/lib/plugin_core
@@ -37,5 +37,5 @@ check_vendor_mac(){
return 1
}
check_painmode(){
- test -n "${painmode:-}" && echo "painmode required">&2 && exit 1
+ test -z "${painmode:-}" && echo "painmode required" && exit 1
}