From 90e320dd110ee99537e9c55b158fed6edaa53b78 Mon Sep 17 00:00:00 2001 From: "Dylan M. Taylor" Date: Wed, 26 Jan 2022 01:53:38 -0500 Subject: Allow mirror reachability check to be skipped (#910) * Allow network check to be skipped * Technically it is a mirror check - not a check for general connectivity --- examples/guided.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/guided.py') diff --git a/examples/guided.py b/examples/guided.py index 723fa629..9092d8f6 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -304,7 +304,7 @@ def perform_installation(mountpoint): archinstall.log(f"Disk states after installing: {archinstall.disk_layouts()}", level=logging.DEBUG) -if not archinstall.check_mirror_reachable(): +if not (archinstall.check_mirror_reachable() or archinstall.arguments.get('skip-mirror-check', False)): log_file = os.path.join(archinstall.storage.get('LOG_PATH', None), archinstall.storage.get('LOG_FILE', None)) archinstall.log(f"Arch Linux mirrors are not reachable. Please check your internet connection and the log file '{log_file}'.", level=logging.INFO, fg="red") exit(1) -- cgit v1.2.3-54-g00ecf