summarylogtreecommitdiffstats
path: root/wifi.hook
diff options
context:
space:
mode:
authortequa2019-07-25 09:07:15 +0200
committertequa2019-07-25 09:08:18 +0200
commitdce3d73e28d4f2d013e5351d231c3fded6b61ade (patch)
treef52c909a8ec4d7c39fde2c613fd9d7dfeb8873bb /wifi.hook
parentc28673eb9d6cfb1a52bad8d23eb8f2b3408add9d (diff)
downloadaur-dce3d73e28d4f2d013e5351d231c3fded6b61ade.tar.gz
indentation + bash array improvements
Diffstat (limited to 'wifi.hook')
-rw-r--r--wifi.hook28
1 files changed, 14 insertions, 14 deletions
diff --git a/wifi.hook b/wifi.hook
index 2813af145793..ee582191eec7 100644
--- a/wifi.hook
+++ b/wifi.hook
@@ -2,30 +2,30 @@
run_hook ()
{
- # sleep a couple of seconds so wlan0 is setup by kernel
- sleep 3
+ # sleep a couple of seconds so wlan0 is setup by kernel
+ sleep 3
echo "Starting wifi"
- # set wlan0 to up
- ip link set wlan0 up
+ # set wlan0 to up
+ ip link set wlan0 up
- # assocciate with wifi network
- wpa_supplicant -B -D nl80211,wext -i wlan0 -c /etc/wpa_supplicant/initcpio.conf
+ # assocciate with wifi network
+ wpa_supplicant -B -D nl80211,wext -i wlan0 -c /etc/wpa_supplicant/initcpio.conf
- # sleep a couple of seconds so that wpa_supplicant finishes connecting
- sleep 5
+ # sleep a couple of seconds so that wpa_supplicant finishes connecting
+ sleep 5
- # wlan0 should now be connected and ready to be assigned an ip by the net hook
+ # wlan0 should now be connected and ready to be assigned an ip by the net hook
}
run_cleanuphook ()
{
- # kill wpa_supplicant running in the background
- killall wpa_supplicant
+ # kill wpa_supplicant running in the background
+ killall wpa_supplicant
- # set wlan0 link down
- ip link set wlan0 down
+ # set wlan0 link down
+ ip link set wlan0 down
- # wlan0 should now be fully disconnected from the wifi network
+ # wlan0 should now be fully disconnected from the wifi network
}