ovirt_host_network: check for empty user_opts (#46695)

Signed-off-by: Ondra Machacek <omachace@redhat.com>
pull/47282/head
bverschueren 6 years ago committed by Toshio Kuratomi
parent c91139bde3
commit 719b99a96e

@ -0,0 +1,2 @@
bugfixes:
- ovirt_host_network - check for empty user_opts (https://github.com/ansible/ansible/pull/47283).

@ -221,7 +221,8 @@ def get_bond_options(mode, usr_opts):
)
opts_dict = DEFAULT_MODE_OPTS.get(mode, {})
opts_dict.update(**usr_opts)
if usr_opts is not None:
opts_dict.update(**usr_opts)
options.extend(
[otypes.Option(name=opt, value=value)

Loading…
Cancel
Save