Explorar el Código

Update homeassistant-install.sh

tteckster hace 3 años
padre
commit
00ec87e46b
Se han modificado 1 ficheros con 7 adiciones y 0 borrados
  1. 7 0
      setup/homeassistant-install.sh

+ 7 - 0
setup/homeassistant-install.sh

@@ -41,6 +41,13 @@ done
 msg_ok "Set up Container OS"
 msg_ok "Network Connected: ${BL}$(hostname -I)"
 
+wget -q --tries=10 --timeout=5 --spider http://google.com
+if [[ $? -eq 0 ]]; then
+        msg_ok "Internet Online"
+else
+        echo -e "{CROSS}${RD} Internet Offline"
+fi
+
 msg_info "Updating Container OS"
 apt update &>/dev/null
 apt-get -qqy upgrade &>/dev/null