Skip to content

Commit

Permalink
Update connectivity check to use TLS
Browse files Browse the repository at this point in the history
Signed-off-by: Markus Storm <markus.storm@gmx.net>
  • Loading branch information
mstormi authored Sep 23, 2024
1 parent 9c23182 commit 86b1b0c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build-image/first-boot.bash
Original file line number Diff line number Diff line change
Expand Up @@ -158,12 +158,12 @@ if [[ $(date +%y%m%d) -lt 240410 ]]; then
fi

echo -n "$(timestamp) [openHABian] Ensuring network connectivity... "
if ! running_in_docker && tryUntil "ping -c1 8.8.8.8 &> /dev/null || curl --silent --head http://www.openhab.org/docs |& grep -qs 'HTTP/1.1 200 OK'" 5 1; then
if ! running_in_docker && tryUntil "ping -c1 8.8.8.8 &> /dev/null || curl --silent --head https://www.openhab.org/docs/ |& grep -qs 'HTTP/[^ ]*[ ]200'" 5 1; then
echo "FAILED"

if [[ "$hotSpot" == "enable" ]] && ! [[ -x $(command -v comitup) ]]; then
setup_hotspot install
tryUntil "ping -c1 8.8.8.8 &> /dev/null || curl --silent --head http://www.openhab.org/docs |& grep -qs 'HTTP/1.1 200 OK'" 3 1
tryUntil "ping -c1 8.8.8.8 &> /dev/null || curl --silent --head https://www.openhab.org/docs/ |& grep -qs 'HTTP/[^ ]*[ ]200'" 3 1
systemctl restart comitup
echo "OK"
fi
Expand All @@ -174,7 +174,7 @@ if ! running_in_docker && tryUntil "ping -c1 8.8.8.8 &> /dev/null || curl --sile
echo " After about an hour, we will continue trying to get your system installed,"
echo " but without proper Internet connectivity this is not likely to be going to work."

tryUntil "ping -c1 8.8.8.8 &> /dev/null || curl --silent --head http://www.openhab.org/docs |& grep -qs 'HTTP/1.1 200 OK'" 100 30
tryUntil "ping -c1 8.8.8.8 &> /dev/null || curl --silent --head https://www.openhab.org/docs/ |& grep -qs 'HTTP/[^ ]*[ ]200'" 100 30
else
echo "OK"
fi
Expand Down

0 comments on commit 86b1b0c

Please sign in to comment.