Add script to check if there is internet connection or restart mobprobe

This commit is contained in:
Bruno F. Fontes 2019-07-21 02:40:34 -03:00
parent 5799d5a332
commit 96220e593e
Signed by: brunofontes
GPG Key ID: EE3447CE80048495

View File

@ -0,0 +1,4 @@
if ! ping -q -c 1 -W 1 8.8.8.8 >/dev/null; then
modProbeNumber=$(sudo dmesg | grep -m1 "enp1s0: link down" | awk '{if ($2 ~ /r[0-9].*/) { col=$2 } else { col=$3 }; gsub(":", "", col); print col }')
sudo modprobe -r "$modProbeNumber" && sleep 10 && sudo modprobe "$modProbeNumber"
fi