From 179c103cddf930b91ffa82a9feee37c7f2487ed8 Mon Sep 17 00:00:00 2001 From: Timothy Pidashev Date: Sun, 30 Jan 2022 02:01:04 -0800 Subject: Synchronize `archlinux-keyring` when running guided.py (#917) * Update guided.py * Update guided.py * Update guided.py * Fix typo * Format string properly; elaborate log msg * Make change consistent to mirror-check * Update documentation --- examples/guided.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'examples/guided.py') diff --git a/examples/guided.py b/examples/guided.py index 9092d8f6..22e0f883 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -309,6 +309,11 @@ if not (archinstall.check_mirror_reachable() or archinstall.arguments.get('skip- 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) +if not (archinstall.update_keyring() or archinstall.arguments.get('skip-keyring-update', False)): + log_file = os.path.join(archinstall.storage.get('LOG_PATH', None), archinstall.storage.get('LOG_FILE', None)) + archinstall.log(f"Failed to update the keyring. Please check your internet connection and the log file '{log_file}'.", level=logging.INFO, fg="red") + exit(1) + load_config() if not archinstall.arguments.get('silent'): ask_user_questions() -- cgit v1.2.3-54-g00ecf