diff --git a/misc/internet-check.sh b/misc/internet-check.sh index e5758dec..6e0b44d4 100644 --- a/misc/internet-check.sh +++ b/misc/internet-check.sh @@ -6,8 +6,8 @@ CM="${GN}✓${CL}" CROSS="${RD}✗${CL}" wget -q --tries=10 --timeout=5 --spider http://google.com if [[ $? -eq 0 ]]; then - echo -e "${CM} Internet Online" + echo -e " ${CM} Internet Online" else - echo -e "${CROSS} Internet Offline" + echo -e " ${CROSS} Internet Offline" fi # bash -c "$(wget -qLO - https://github.com/tteck/Proxmox/raw/main/misc/internet-check.sh)"