mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 06:29:23 +01:00
tools/ios_convert: add 'Name' to hotspot config
Also fixed a indentation issue for NAIRealms
This commit is contained in:
parent
41740ceabc
commit
54a5791195
@ -128,8 +128,12 @@ def write_network(network, root_ca_path):
|
|||||||
for i in range(len(network.nai_realms)):
|
for i in range(len(network.nai_realms)):
|
||||||
output += network.nai_realms[i]
|
output += network.nai_realms[i]
|
||||||
|
|
||||||
if i < len(network.nai_realms) - 1:
|
if i < len(network.nai_realms) - 1:
|
||||||
output += ','
|
output += ','
|
||||||
|
|
||||||
|
output += "\n"
|
||||||
|
output += "Name=%s\n" % network.ssid
|
||||||
|
|
||||||
else:
|
else:
|
||||||
conf_file = iwd_dir + '/' + network.ssid + '.8021x'
|
conf_file = iwd_dir + '/' + network.ssid + '.8021x'
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user