|
|
@ -129,20 +129,18 @@ class VmwareConfigManager(PyVmomi):
|
|
|
|
for host in self.hosts:
|
|
|
|
for host in self.hosts:
|
|
|
|
option_manager = host.configManager.advancedOption
|
|
|
|
option_manager = host.configManager.advancedOption
|
|
|
|
host_facts = {}
|
|
|
|
host_facts = {}
|
|
|
|
for option in option_manager.QueryOptions():
|
|
|
|
|
|
|
|
host_facts[option.key] = dict(value=option.value)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for s_option in option_manager.supportedOption:
|
|
|
|
for s_option in option_manager.supportedOption:
|
|
|
|
host_facts[s_option.key].update(
|
|
|
|
host_facts[s_option.key] = dict(option_type=s_option.optionType, value=None)
|
|
|
|
option_type=s_option.optionType,
|
|
|
|
|
|
|
|
|
|
|
|
for option in option_manager.QueryOptions():
|
|
|
|
|
|
|
|
if option.key in host_facts:
|
|
|
|
|
|
|
|
host_facts[option.key].update(
|
|
|
|
|
|
|
|
value=option.value,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
change_option_list = []
|
|
|
|
change_option_list = []
|
|
|
|
for option_key, option_value in self.options.items():
|
|
|
|
for option_key, option_value in self.options.items():
|
|
|
|
if option_key in host_facts:
|
|
|
|
if option_key in host_facts:
|
|
|
|
# Make sure option_type is defined some values do not have
|
|
|
|
|
|
|
|
# it defined and appear to be read only.
|
|
|
|
|
|
|
|
if 'option_type' in host_facts[option_key]:
|
|
|
|
|
|
|
|
# We handle all supported types here so we can give meaningful errors.
|
|
|
|
# We handle all supported types here so we can give meaningful errors.
|
|
|
|
option_type = host_facts[option_key]['option_type']
|
|
|
|
option_type = host_facts[option_key]['option_type']
|
|
|
|
if self.is_boolean(option_value) and isinstance(option_type, vim.option.BoolOption):
|
|
|
|
if self.is_boolean(option_value) and isinstance(option_type, vim.option.BoolOption):
|
|
|
@ -160,15 +158,13 @@ class VmwareConfigManager(PyVmomi):
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
self.module.fail_json(msg="Provided value is of type %s."
|
|
|
|
self.module.fail_json(msg="Provided value is of type %s."
|
|
|
|
" Option %s expects: %s" % (type(option_value), option_key, type(option_type)))
|
|
|
|
" Option %s expects: %s" % (type(option_value), option_key, type(option_type)))
|
|
|
|
else:
|
|
|
|
|
|
|
|
self.module.fail_json(msg="Cannot change read only option %s to %s." % (option_key, option_value))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if option_value != host_facts[option_key]['value']:
|
|
|
|
if option_value != host_facts[option_key]['value']:
|
|
|
|
change_option_list.append(vim.option.OptionValue(key=option_key, value=option_value))
|
|
|
|
change_option_list.append(vim.option.OptionValue(key=option_key, value=option_value))
|
|
|
|
changed = True
|
|
|
|
changed = True
|
|
|
|
changed_list.append(option_key)
|
|
|
|
changed_list.append(option_key)
|
|
|
|
else: # Don't silently drop unknown options. This prevents typos from falling through the cracks.
|
|
|
|
else: # Don't silently drop unknown options. This prevents typos from falling through the cracks.
|
|
|
|
self.module.fail_json(msg="Unknown option %s" % option_key)
|
|
|
|
self.module.fail_json(msg="Unsupported option %s" % option_key)
|
|
|
|
if changed:
|
|
|
|
if changed:
|
|
|
|
if self.module.check_mode:
|
|
|
|
if self.module.check_mode:
|
|
|
|
changed_suffix = ' would be changed.'
|
|
|
|
changed_suffix = ' would be changed.'
|
|
|
|