wifi-reload: Split start into starthw and startnm.

This commit is contained in:
Ole Tange 2019-01-18 16:06:09 +01:00
parent b28d112161
commit 1e96940cb0

View file

@ -63,10 +63,12 @@ stop() {
sudo kill -9 $PID || sudo killall -9 NetworkManager sudo kill -9 $PID || sudo killall -9 NetworkManager
} }
start() { starthw() {
parallel -j1 sudo modprobe ::: $modules parallel -j1 sudo modprobe ::: $modules
sudo rfkill unblock all sudo rfkill unblock all
sleep 1 }
startnm() {
#sudo service network-manager start #sudo service network-manager start
sudo NetworkManager & sudo NetworkManager &
#sudo /etc/init.d/network-manager restart #sudo /etc/init.d/network-manager restart
@ -79,12 +81,15 @@ config() {
sudo bash -c 'cat >> /etc/resolv.conf' < /etc/resolvconf/resolv.conf.d/head sudo bash -c 'cat >> /etc/resolv.conf' < /etc/resolvconf/resolv.conf.d/head
#sudo iwconfig wls1 essid Turris #sudo iwconfig wls1 essid Turris
#sudo iwconfig wls1 essid Leif #sudo iwconfig wls1 essid Leif
sudo iwconfig wls1 essid SKYbroadbandCC95
sudo wpa_supplicant -c/etc/wpa_supplicant.conf -i$IF -d &
sudo dhclient $IF & sudo dhclient $IF &
sudo wpa_supplicant -Dwext -c/etc/wpa_supplicant.conf -i$IF -d &
} }
stop stop
start starthw
config wlp3s0
#startnm
if tty -s ; then if tty -s ; then
# STDIN is terminal # STDIN is terminal
true timeout 12 dmesg -Tw & true timeout 12 dmesg -Tw &