index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-04-04 09:37:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-04 09:37:29 +0000 |
commit | f452655d4fb18971fef423225d34bc770bc6c97b (patch) | |
tree | fe187f8c8e18379fa97e913f50ed5c64b5e11026 /examples | |
parent | b37c0cc5d7ee018e927d3e09b828ec6a026cb1a3 (diff) | |
parent | 8ad4a7d1c42ec5aaf665d4f769cc4860780225d2 (diff) |
-rw-r--r-- | examples/guided.py | 6 |
diff --git a/examples/guided.py b/examples/guided.py index cfa8b37c..eba6e142 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -320,7 +320,9 @@ def perform_installation(device, boot_partition, language, mirrors): # Perform a copy of the config if archinstall.arguments.get('nic', None) == 'Copy ISO network configuration to installation': installation.copy_ISO_network_config(enable_services=True) # Sources the ISO network configuration to the install medium. - + elif archinstall.arguments.get('nic',{}).get('NetworkManager',False): + installation.add_additional_packages("networkmanager") + installation.enable_service('NetworkManager.service') # Otherwise, if a interface was selected, configure that interface elif archinstall.arguments.get('nic', None): installation.configure_nic(**archinstall.arguments.get('nic', {})) @@ -348,4 +350,4 @@ def perform_installation(device, boot_partition, language, mirrors): ask_user_questions() -perform_installation_steps()
\ No newline at end of file +perform_installation_steps() |