mirror of
https://github.com/xcat2/confluent.git
synced 2026-09-11 12:06:26 +00:00
Ignore UEFI HTTP boot on ProxyDHCP port
This commit is contained in:
@@ -317,11 +317,14 @@ async def proxydhcp(handler, nodeguess):
|
||||
node, ('deployment.*', 'collective.managercandidates'))
|
||||
if disco['arch'] is None:
|
||||
continue
|
||||
if disco['arch'] == 'uefi-httpboot':
|
||||
# HTTP boot is offered by the DHCP path, not proxyDHCP
|
||||
continue
|
||||
insecuremode = cfd.get(node, {}).get('deployment.useinsecureprotocols',
|
||||
{}).get('value', 'never')
|
||||
if not insecuremode:
|
||||
insecuremode = 'never'
|
||||
if insecuremode == 'never' and disco['arch'] != 'uefi-httpboot':
|
||||
if insecuremode == 'never':
|
||||
if not skiplogging:
|
||||
log.log(
|
||||
{'info': 'Boot attempt by {0} detected in insecure mode, but '
|
||||
|
||||
Reference in New Issue
Block a user