Mention GNOME and KDE's soft dependency on NetworkManager in the install
This commit is contained in:
parent
3a40764194
commit
b0aa5dcbbb
|
|
@ -388,13 +388,13 @@ def ask_to_configure_network():
|
|||
# {MAC: Ifname}
|
||||
interfaces = {
|
||||
'ISO-CONFIG': 'Copy ISO network configuration to installation',
|
||||
'NetworkManager': 'Use NetworkManager to control and manage your internet connection',
|
||||
'NetworkManager': 'Use NetworkManager (necessary to configure internet graphically in GNOME and KDE)',
|
||||
**list_interfaces()
|
||||
}
|
||||
|
||||
nic = generic_select(interfaces, "Select one network interface to configure (leave blank to skip): ")
|
||||
if nic and nic != 'Copy ISO network configuration to installation':
|
||||
if nic == 'Use NetworkManager to control and manage your internet connection':
|
||||
if nic == 'Use NetworkManager (necessary to configure internet graphically in GNOME and KDE)':
|
||||
return {'nic': nic, 'NetworkManager': True}
|
||||
|
||||
# Current workaround:
|
||||
|
|
|
|||
Loading…
Reference in New Issue