2020-04-08 18:34:06 +02:00

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