Fixed #101. Now warns the users after they skip the network configuration.

This commit is contained in:
Anton Hvornum 2021-03-20 17:12:53 +01:00
parent 54200bf476
commit 61504fc927
No known key found for this signature in database
GPG Key ID: F1234C5BA67C59DF
1 changed files with 2 additions and 0 deletions

View File

@ -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():