From 834c3f35d0a3fe03fe3c32c3c068584854b037ca Mon Sep 17 00:00:00 2001 From: Israel Figueroa Date: Thu, 23 Jul 2020 22:43:51 -0400 Subject: [PATCH] minor fix --- esxi-vm-create | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/esxi-vm-create b/esxi-vm-create index 44c73a0..76b6776 100755 --- a/esxi-vm-create +++ b/esxi-vm-create @@ -308,10 +308,10 @@ except Exception as e: pass vmx = { - '.encoding': 'UTF-8' + '.encoding': 'UTF-8', 'config.version': '8', 'virtualHW.version': '11', - 'nvram': u'{}.nvram'.format(NAME) + 'nvram': u'{}.nvram'.format(NAME), 'pciBridge0.present': 'TRUE', 'svga.present': 'TRUE', 'pciBridge4.present': 'TRUE', @@ -340,7 +340,7 @@ vmx = { 'scsi0:0.present': 'TRUE', 'scsi0:0.fileName': "{}.vmdk".format(NAME), 'scsi0:0.deviceType': 'scsi-hardDisk', - 'guestOS': GUESTOS + 'guestOS': GUESTOS, 'displayName': NAME, 'annotation': 'VM created by {} ({}@{}) at {}'.format(USER,os.getlogin(),local_host_name(),the_current_date_time()), 'floppy0.present': 'FALSE',