From 500cdf7535a819f8c5920846e22fd29669c99150 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Thu, 18 Sep 2025 08:55:09 -0400 Subject: [PATCH] Change boot.img to boot.iso for Windows Some things expect an iso to be named as such. This drives different handling, but there's little choice in the matter. --- confluent_server/confluent/osimage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_server/confluent/osimage.py b/confluent_server/confluent/osimage.py index e7a9dc07..c0f3b605 100644 --- a/confluent_server/confluent/osimage.py +++ b/confluent_server/confluent/osimage.py @@ -97,7 +97,7 @@ def update_boot_windows(profiledir, profile, label, initialimport): try: subprocess.check_call( ['/usr/bin/genisoimage', '-o', - '{0}/boot.img'.format(profiledir), '-udf', '-b', 'dvd/etfsboot.com', + '{0}/boot.iso'.format(profiledir), '-udf', '-b', 'dvd/etfsboot.com', '-no-emul-boot', '-eltorito-alt-boot', '-eltorito-boot', 'dvd/efisys_noprompt.bin', '{0}/boot'.format(profiledir)], preexec_fn=relax_umask) except Exception: