diff --git a/changelogs/fragments/ovirt_host_network_fix_type_conversion.yaml b/changelogs/fragments/ovirt_host_network_fix_type_conversion.yaml new file mode 100644 index 00000000000..85bf0f4b2b3 --- /dev/null +++ b/changelogs/fragments/ovirt_host_network_fix_type_conversion.yaml @@ -0,0 +1,2 @@ +bugfixes: + - ovirt_host_network - Fix type conversion (https://github.com/ansible/ansible/pull/47617). diff --git a/lib/ansible/modules/cloud/ovirt/ovirt_host_network.py b/lib/ansible/modules/cloud/ovirt/ovirt_host_network.py index 49681fcba47..7a655c8745d 100644 --- a/lib/ansible/modules/cloud/ovirt/ovirt_host_network.py +++ b/lib/ansible/modules/cloud/ovirt/ovirt_host_network.py @@ -221,12 +221,12 @@ def get_bond_options(mode, usr_opts): ) ) - opts_dict = DEFAULT_MODE_OPTS.get(mode, {}) + opts_dict = DEFAULT_MODE_OPTS.get(str(mode), {}) if usr_opts is not None: opts_dict.update(**usr_opts) options.extend( - [otypes.Option(name=opt, value=value) + [otypes.Option(name=opt, value=str(value)) for opt, value in six.iteritems(opts_dict)] ) return options