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 6f0884da92..81d2a691d4 100644 --- a/plugins/modules/nmcli.py +++ b/plugins/modules/nmcli.py @@ -1951,7 +1951,6 @@ class Nmcli(object): @property def ip_conn_type(self): return self.type in ( - 'bond', 'bridge', 'dummy', 'ethernet',