summaryrefslogtreecommitdiff
path: root/net_profile
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2014-10-09 20:44:15 +0100
committerPatrick Simianer <p@simianer.de>2014-10-09 20:44:15 +0100
commitca41eddfdc979955105cce572e659941544d6f6d (patch)
treebf446902e8323e58c6fc14dce808b9719da7d3f6 /net_profile
parent0aae427eb3838297f6e204c2961739ef834762cf (diff)
alles neu macht der mai
Diffstat (limited to 'net_profile')
-rwxr-xr-xnet_profile18
1 files changed, 18 insertions, 0 deletions
diff --git a/net_profile b/net_profile
new file mode 100755
index 0000000..8acea40
--- /dev/null
+++ b/net_profile
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+setup_wifi()
+{
+ sudo wpa_supplicant -D wext -i wlan0 -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
+
+