2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 09:32:21 +00:00

Correct typo in osimage.py

Wrong variable name...
This commit is contained in:
Jarrod Johnson 2020-06-12 14:43:00 -04:00
parent fc7ad4b028
commit e1de56f19b

View File

@ -72,7 +72,7 @@ def update_boot_esxi(profiledir, profile, label):
kern = cfgline.split('=', 1)[1]
kern = kern.replace('/', '')
newbootcfg += 'kernel={0}\n'.format(kern)
efibootcfg += cfgiline + '\n'
efibootcfg += cfgline + '\n'
filesneeded.append(kern)
elif cfgline.startswith('modules='):
modlist = cfgline.split('=', 1)[1]