summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xnet-profile7
1 files changed, 6 insertions, 1 deletions
diff --git a/net-profile b/net-profile
index 3234f8c..874aaac 100755
--- a/net-profile
+++ b/net-profile
@@ -3,12 +3,17 @@
setup_wifi()
{
- sudo wpa_supplicant -D wext -i wlan0 -c ~/.net_profiles/$1.conf &>/dev/null &
+ 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