diff options
author | Patrick Simianer <p@simianer.de> | 2016-04-16 16:34:33 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2016-04-16 16:34:33 +0200 |
commit | 95b3e4bb744932ce4eac14bb350cc0455d15848a (patch) | |
tree | c96093d9667c87264a8820d876041fe96b068f57 /net-profile | |
parent | fca926851e1d56eeb0044727fe976252d646f48d (diff) |
mv
Diffstat (limited to 'net-profile')
-rwxr-xr-x | net-profile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/net-profile b/net-profile new file mode 100755 index 0000000..57c278a --- /dev/null +++ b/net-profile @@ -0,0 +1,20 @@ +#!/bin/sh + +DEV=`ls -1 /sys/class/net | grep wlan` + +setup_wifi() +{ + sudo wpa_supplicant -D wext -i $DEV -c ~/.net_profiles/$1.conf &>/tmp/wpa_supplicant.log & + sudo /etc/init.d/dhcpcd start + sleep 30 + sudo rc-config start ntp-client +} + +if [ ! -f ~/.net_profiles/$1.conf ]; then + echo "no such profile" + exit +fi + +setup_wifi $1 + + |