From 61504fc9270c24cac088bbf18fb6d623462ce790 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Sat, 20 Mar 2021 17:12:53 +0100 Subject: Fixed #101. Now warns the users after they skip the network configuration. --- examples/guided.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'examples') diff --git a/examples/guided.py b/examples/guided.py index 87f46b35..655fc29f 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -187,6 +187,8 @@ def ask_user_questions(): # Ask or Call the helper function that asks the user to optionally configure a network. if not archinstall.arguments.get('nic', None): archinstall.arguments['nic'] = archinstall.ask_to_configure_network() + if not archinstall.arguments['nic']: + archinstall.log(f"No network configuration was selected. Network is going to be unavailable until configured manually!", fg="yellow") def perform_installation_steps(): -- cgit v1.2.3-54-g00ecf