Fixed DNS logic, since DNS might become [""].

This commit is contained in:
Anton Hvornum 2020-11-11 20:23:13 +00:00
parent b3bcf54a2c
commit 7288df57b7
1 changed files with 5 additions and 2 deletions

View File

@ -204,8 +204,11 @@ if nic:
fg='red'
)
gateway = input('Enter your gateway (router) IP address or leave blank for none: ').strip()
dns = input('Enter your DNS servers (space separated, blank for none): ').strip().split(' ')
if gateway = input('Enter your gateway (router) IP address or leave blank for none: ').strip()
dns = None
if len(dns := input('Enter your DNS servers (space separated, blank for none): ').strip()):
dns = dns.split(' ')
archinstall.storage['_guided']['network'] = {'nic': nic, 'dhcp': False, 'ip': ip, 'gateway' : gateway, 'dns' : dns}
else: