diff options
author | Patrick Simianer <p@simianer.de> | 2014-08-10 11:19:38 +0100 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2014-08-10 11:19:38 +0100 |
commit | 5869505d64c04c536bdcd71a197ade918c36bf1c (patch) | |
tree | 6af5232a9f2e058f15230a370a960f89871a2b74 /net-profile |
init
Diffstat (limited to 'net-profile')
-rwxr-xr-x | net-profile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/net-profile b/net-profile new file mode 100755 index 0000000..3234f8c --- /dev/null +++ b/net-profile @@ -0,0 +1,14 @@ +#!/bin/sh + + +setup_wifi() +{ + sudo wpa_supplicant -D wext -i wlan0 -c ~/.net_profiles/$1.conf &>/dev/null & + sudo /etc/init.d/dhcpcd start + sleep 30 + sudo rc-config start ntp-client +} + +setup_wifi $1 + + |