|
84 | 84 | - Please note that a supplied UUID will be ignored on virtual machine creation, as VMware creates the UUID internally.
|
85 | 85 | use_instance_uuid:
|
86 | 86 | description:
|
87 |
| - - Whether to use the VMWare instance UUID rather than the BIOS UUID. |
| 87 | + - Whether to use the VMware instance UUID rather than the BIOS UUID. |
88 | 88 | default: no
|
89 | 89 | type: bool
|
90 | 90 | version_added: '2.8'
|
|
598 | 598 |
|
599 | 599 |
|
600 | 600 | class PyVmomiDeviceHelper(object):
|
601 |
| - """ This class is a helper to create easily VMWare Objects for PyVmomiHelper """ |
| 601 | + """ This class is a helper to create easily VMware Objects for PyVmomiHelper """ |
602 | 602 |
|
603 | 603 | def __init__(self, module):
|
604 | 604 | self.module = module
|
@@ -1333,7 +1333,7 @@ def configure_network(self, vm_obj):
|
1333 | 1333 | "The failing new MAC address is %s" % nic.device.macAddress)
|
1334 | 1334 |
|
1335 | 1335 | else:
|
1336 |
| - # Default device type is vmxnet3, VMWare best practice |
| 1336 | + # Default device type is vmxnet3, VMware best practice |
1337 | 1337 | device_type = network_devices[key].get('device_type', 'vmxnet3')
|
1338 | 1338 | nic = self.device_helper.create_nic(device_type,
|
1339 | 1339 | 'Network Adapter %s' % (key + 1),
|
@@ -1872,7 +1872,7 @@ def configure_disks(self, vm_obj):
|
1872 | 1872 | pass
|
1873 | 1873 |
|
1874 | 1874 | kb = self.get_configured_disk_size(expected_disk_spec)
|
1875 |
| - # VMWare doesn't allow to reduce disk sizes |
| 1875 | + # VMware doesn't allow to reduce disk sizes |
1876 | 1876 | if kb < diskspec.device.capacityInKB:
|
1877 | 1877 | self.module.fail_json(
|
1878 | 1878 | msg="Given disk size is smaller than found (%d < %d). Reducing disks is not allowed." %
|
@@ -2383,7 +2383,7 @@ def reconfigure_vm(self):
|
2383 | 2383 | if task.info.state == 'error':
|
2384 | 2384 | return {'changed': self.change_applied, 'failed': True, 'msg': task.info.error.msg, 'op': 'relocate'}
|
2385 | 2385 |
|
2386 |
| - # Only send VMWare task if we see a modification |
| 2386 | + # Only send VMware task if we see a modification |
2387 | 2387 | if self.change_detected:
|
2388 | 2388 | task = None
|
2389 | 2389 | try:
|
@@ -2441,7 +2441,7 @@ def reconfigure_vm(self):
|
2441 | 2441 | self.module.fail_json(msg="Failed to convert template to virtual machine"
|
2442 | 2442 | " due to generic error : %s" % to_native(generic_exc))
|
2443 | 2443 |
|
2444 |
| - # Automatically update VMWare UUID when converting template to VM. |
| 2444 | + # Automatically update VMware UUID when converting template to VM. |
2445 | 2445 | # This avoids an interactive prompt during VM startup.
|
2446 | 2446 | uuid_action = [x for x in self.current_vm_obj.config.extraConfig if x.key == "uuid.action"]
|
2447 | 2447 | if not uuid_action:
|
|
0 commit comments