index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | m1ten <57693631+m1ten@users.noreply.github.com> | 2021-04-04 12:46:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-04 12:46:31 -0400 |
commit | 5018bef41dd36060b0604d711f42ce8050d5f5cc (patch) | |
tree | e396db4dd82fddb399f9db50e861dac99bffaf36 /examples | |
parent | 77c30fcb04599c631511943871f491d706a2d540 (diff) | |
parent | 0dcb4da799ae3beba807bfe9bfb56e97b6d64dc8 (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() |