mirror of https://github.com/tteck/Proxmox.git
Update internet-check.sh
This commit is contained in:
parent
d7f10ae014
commit
8053a2ffb0
|
@ -1,8 +1,10 @@
|
|||
#!/usr/bin/env bash -ex
|
||||
CM="${GN}✓${CL}"
|
||||
CROSS="${RD}✗${CL}"
|
||||
wget -q --tries=10 --timeout=5 --spider http://google.com
|
||||
if [[ $? -eq 0 ]]; then
|
||||
echo -e "Internet Online"
|
||||
echo -e "${CM} Internet Online"
|
||||
else
|
||||
echo -e "Internet Offline"
|
||||
echo -e "${CROSS} Internet Offline"
|
||||
fi
|
||||
# bash -c "$(wget -qLO - https://github.com/tteck/Proxmox/raw/main/misc/internet-check.sh)"
|
||||
|
|
Loading…
Reference in New Issue