From 76f256a344d1192f4febab3e2b1c1297b087b50c Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Fri, 12 Jun 2020 10:36:06 -0400 Subject: [PATCH] Fix missing quote that broke build --- 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 706c781e..b3ef9555 100644 --- a/confluent_server/confluent/osimage.py +++ b/confluent_server/confluent/osimage.py @@ -75,7 +75,7 @@ def update_boot_esxi(profiledir, profile, label): mods = [x.replace('/', '') for x in mods] filesneeded.extend(mods) - newbootcfg += 'modules= + ' --- '.join(mods) + ' --- initramfs/addons.tgz --- site.tgz\n' + newbootcfg += 'modules=' + ' --- '.join(mods) + ' --- initramfs/addons.tgz --- site.tgz\n' else: newbootcfg += cfgline + '\n' os.makedirs('{0}/boot/efi/boot/'.format(profiledir), 0o755)