From 323be19f214dd1d63799e67eb324ca961d1cadee Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Thu, 2 Apr 2020 11:34:42 -0400 Subject: [PATCH] Fix typo in the legacy boot support --- confluent_server/confluent/discovery/protocols/pxe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_server/confluent/discovery/protocols/pxe.py b/confluent_server/confluent/discovery/protocols/pxe.py index 9d0c3b8f..3a83f0fb 100644 --- a/confluent_server/confluent/discovery/protocols/pxe.py +++ b/confluent_server/confluent/discovery/protocols/pxe.py @@ -251,7 +251,7 @@ def proxydhcp(): bootfile = 'http://{0}/confluent-public/os/{1}/boot/boot.ipxe'.format(myip, profile).encode('utf8') elif disco['arch'] == 'uefi-x64': bootfile = b'confluent/x86_64/ipxe.efi' - elif disco['arch'] == 'bios-x86' + elif disco['arch'] == 'bios-x86': bootfile = b'confluent/x86_64/ipxe.kkpxe' rpv[:240] = bytes(rqv[:240]) rpv[0:1] = b'\x02'