diff options
Diffstat (limited to 'net_profile')
-rwxr-xr-x | net_profile | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/net_profile b/net_profile deleted file mode 100755 index 57c278a..0000000 --- a/net_profile +++ /dev/null @@ -1,20 +0,0 @@ -#!/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 - - |