2
0
mirror of https://github.com/xcat2/confluent.git synced 2025-01-15 12:17:47 +00:00

Correct syntax error in pxe handler

This commit is contained in:
Jarrod Johnson 2022-10-13 14:49:09 -04:00
parent a0702681da
commit 84407e3d2b
2 changed files with 5 additions and 5 deletions

View File

@ -456,10 +456,10 @@ node = {
},
'net.interface_names': {
'description': 'Interface name or comma delimited list of names to match for this interface. It is generally recommended '
'to leave this blank unless needing to set up interfaces that are not on a common subnet with a confluent server, '
'as confluent servers provide autodetection for matching the correct network definition to an interface.'
'This would be the default name per the deployed OS and can be a comma delimited list to denote members of '
'a team'
'to leave this blank unless needing to set up interfaces that are not on a common subnet with a confluent server, '
'as confluent servers provide autodetection for matching the correct network definition to an interface.'
'This would be the default name per the deployed OS and can be a comma delimited list to denote members of '
'a team'
},
'net.ipv4_address': {
'description': 'When configuring static, use this address. If '

View File

@ -583,7 +583,7 @@ def reply_dhcp6(node, addr, cfg, packet, cfd, profile, sock):
if not isinstance(bootfile, bytes):
bootfile = bootfile.encode('utf8')
ipass = []
if ipv6method == 'firmwarenone:'
if ipv6method == 'firmwarenone':
return
if ipv6method not in ('dhcp', 'firmwaredhcp') and ipv6addr:
if not ipv6prefix: