From 3023e5703370d7a53f47376205c2203db6b6fb98 Mon Sep 17 00:00:00 2001 From: "Dylan M. Taylor" Date: Thu, 10 Jun 2021 07:44:23 -0400 Subject: Add a message when running check_mirror_reachable to let users know it is not frozen. --- archinstall/lib/networking.py | 1 + 1 file changed, 1 insertion(+) (limited to 'archinstall/lib/networking.py') diff --git a/archinstall/lib/networking.py b/archinstall/lib/networking.py index 64bcb58e..ded5ebe6 100644 --- a/archinstall/lib/networking.py +++ b/archinstall/lib/networking.py @@ -29,6 +29,7 @@ def list_interfaces(skip_loopback=True): def check_mirror_reachable(): + log("Testing connectivity to the Arch Linux mirrors ...", level=logging.INFO) if (exit_code := SysCommand("pacman -Sy").exit_code) == 0: return True elif os.geteuid() != 0: -- cgit v1.2.3-54-g00ecf