diff --git a/changelogs/fragments/8558-fix-bond-connection-type-options.yml b/changelogs/fragments/8558-fix-bond-connection-type-options.yml new file mode 100644 index 0000000000..8f3159faa3 --- /dev/null +++ b/changelogs/fragments/8558-fix-bond-connection-type-options.yml @@ -0,0 +1,2 @@ +minor_changes: + - "nmcli - corrects underlying command formation by no longer including ``ipv4.*`` and ``ipv6.*`` settings when working with ``bond`` connection types (https://github.com/ansible-collections/community.general/issues/8558)." diff --git a/plugins/modules/nmcli.py b/plugins/modules/nmcli.py index 3c895e76ec..e9a125b47b 100644 --- a/plugins/modules/nmcli.py +++ b/plugins/modules/nmcli.py @@ -2074,7 +2074,6 @@ class Nmcli(object): @property def ip_conn_type(self): return self.type in ( - 'bond', 'bridge', 'dummy', 'ethernet',