mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 17:51:20 +00:00
13 lines
221 B
Bash
13 lines
221 B
Bash
#!/bin/bash
|
|
|
|
while true ; do
|
|
if ifconfig wlan0 | grep -q "inet" ; then
|
|
sleep 60
|
|
else
|
|
echo "Network connection down! Attempting reconnection."
|
|
sudo ifconfig wlan0 down
|
|
sudo ifconfig wlan0 up
|
|
sleep 10
|
|
fi
|
|
done
|