Update photoprism-install.sh

This commit is contained in:
tteckster 2022-04-27 18:22:02 -04:00 committed by GitHub
parent 26d09286ea
commit 05d488f00c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -54,6 +54,15 @@ done
msg_ok "Set up Container OS"
msg_ok "Network Connected: ${BL}$(hostname -I)"
msg_info "Checking Internet Status"
INTER=$(wget -q --tries=10 --timeout=5 --spider https://google.com)
sleep 2
if [[ $INTER -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