mirror of
https://github.com/nextcloud/vm.git
synced 2025-10-26 11:27:32 +00:00
12 lines
229 B
Bash
12 lines
229 B
Bash
#!/bin/bash
|
|
|
|
WGET="/usr/bin/wget"
|
|
|
|
$WGET -q --tries=20 --timeout=10 http://www.google.com -O /tmp/google.idx &> /dev/null
|
|
if [ ! -s /tmp/google.idx ]
|
|
then
|
|
echo -e "\e[31mNot Connected!\e[0m"
|
|
else
|
|
echo -e "Connected!"
|
|
fi
|