fixed typo
This commit is contained in:
parent
9e3ded8311
commit
454d712d08
|
|
@ -119,7 +119,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