diff options
author | lassulus <lassulus@googlemail.com> | 2013-05-24 13:24:52 +0200 |
---|---|---|
committer | lassulus <lassulus@googlemail.com> | 2013-05-24 13:24:52 +0200 |
commit | 631986deaf81a4641578d1d878f66d2e1a622396 (patch) | |
tree | 618c2175ea1030a7d3d52fa07c7c4519143f1785 /usr/lib/autowifi/00profile | |
parent | 5f7f912c13b1fc137b7a29a4083082d9efcc9b40 (diff) |
new profiles & autowifi
Diffstat (limited to 'usr/lib/autowifi/00profile')
-rwxr-xr-x | usr/lib/autowifi/00profile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/usr/lib/autowifi/00profile b/usr/lib/autowifi/00profile new file mode 100755 index 00000000..4d2a9a82 --- /dev/null +++ b/usr/lib/autowifi/00profile @@ -0,0 +1,9 @@ +#!/bin/sh +#ESSID MAC CHANNEL ENCRYPTION WPA WPA2 +cat /etc/autowifi/wifi_keys | while IFS='|' read SSID MAC KEY; do + if [ "$1" == "$SSID" -a "$2" == "$MAC" ]; then + echo $KEY + exit 0 + fi +done +exit 1 |