fixed typo
This commit is contained in:
parent
55622fd79d
commit
75a36e2fdc
|
|
@ -176,7 +176,7 @@ def ask_to_configure_network():
|
||||||
if len(dns_input := input('Enter your DNS servers (space separated, blank for none): ').strip()):
|
if len(dns_input := input('Enter your DNS servers (space separated, blank for none): ').strip()):
|
||||||
dns = dns_input.split(' ')
|
dns = dns_input.split(' ')
|
||||||
|
|
||||||
return {'nic': nic, 'dhcp': False, 'ip': ip, 'gateway' : gateway, 'dns' : dns}s
|
return {'nic': nic, 'dhcp': False, 'ip': ip, 'gateway' : gateway, 'dns' : dns}
|
||||||
else:
|
else:
|
||||||
return {'nic': nic,'NetworkManager':True}
|
return {'nic': nic,'NetworkManager':True}
|
||||||
elif nic:
|
elif nic:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue