VMware: Allow dash in Windows server dnsname (#64052)

Fixes: #62810
pull/64147/head
Pavan Bidkar 5 years ago committed by Abhijeet Kasurde
parent 8316fa66e8
commit 548fa65ac6

@ -0,0 +1,2 @@
bugfixes:
- vmware_guest - Allow '-' (Dash) special char in windows DNS name.

@ -1813,7 +1813,8 @@ class PyVmomiHelper(PyVmomi):
ident.userData.computerName = vim.vm.customization.FixedName()
# computer name will be truncated to 15 characters if using VM name
default_name = self.params['name'].replace(' ', '')
default_name = ''.join([c for c in default_name if c not in string.punctuation])
punctuation = string.punctuation.replace('-', '')
default_name = ''.join([c for c in default_name if c not in punctuation])
ident.userData.computerName.name = str(self.params['customization'].get('hostname', default_name[0:15]))
ident.userData.fullName = str(self.params['customization'].get('fullname', 'Administrator'))
ident.userData.orgName = str(self.params['customization'].get('orgname', 'ACME'))

Loading…
Cancel
Save