diff options
author | makefu <github@syntax-fehler.de> | 2013-06-10 21:26:41 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2013-06-10 21:26:41 +0200 |
commit | 06e5754372f036c3a4b5a3a549db36a8fed066ff (patch) | |
tree | c39bc9c3bc6bdea3034e1c6eeab33fa65f79cc53 | |
parent | af16433b46f5c60fc5153141d8d5f336c076160c (diff) |
merge curl and wget
-rw-r--r-- | TODO | 1 | ||||
-rw-r--r-- | usr/lib/autowifi/lib/network | 2 |
2 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,4 @@ sort networks by bandwidth and connect -merge curl and wget commands perform initial scan on startup of unscanned networks more intelligent autoconnect (open first, encrypted second etc.) profiles ala netcfg/netctl diff --git a/usr/lib/autowifi/lib/network b/usr/lib/autowifi/lib/network index aabac89b..a9e30739 100644 --- a/usr/lib/autowifi/lib/network +++ b/usr/lib/autowifi/lib/network @@ -4,7 +4,7 @@ check_gateway(){ ping -c 1 -w 5 $(ip route | awk '/default/{print $3}') } check_internet(){ - secret=$(wget -O- http://krebsco.de/secret 2>/dev/null) + secret=$(curl http://krebsco.de/secret 2>/dev/null) if [ "$secret" == "1337" ]; then return 0 else |