seems to be blocked by the firewall (at least, when i turn off the firewall, it passes the connection test)
this probably hasn't been a priority because there havn't been any updates..
ping and ssh(at least ) are also affected by this, so i suspect the firewall rules might need some attention..
now, update-porteus uses the function: is_online (sourced from /usr/share/porteus/porteus-functions) , which looks like this:
Code: Select all
is_online(){ ping -q -w 1 -c 1 `ip r | awk '/default/{print$3}'|head -n1` >/dev/null 2>&1; }

other scripts, eg update-firefox, use function: is_online_url (also sourced from /usr/share/porteus/porteus-functions) , which looks like this:
Code: Select all
is_online_url(){ ( wget -q --spider --force-html --inet4-only $1 >/dev/null 2>&1 ); }