1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Pass missing vlan-related options (flags, ingress, egress) to nmcli (#3896) (#3898)

* Pass missing vlan-related options (flags, ingress, egress) to nmcli

Signed-off-by: Jean-Francois Panisset <panisset@gmail.com>

* Follow style: comma on last parameter

Signed-off-by: Jean-Francois Panisset <panisset@gmail.com>

* PEP8 code style fix

Signed-off-by: Jean-Francois Panisset <panisset@gmail.com>

* add missing changelog fragment

Signed-off-by: Jean-Francois Panisset <panisset@gmail.com>
(cherry picked from commit 6cec2e2f58)

Co-authored-by: Jean-Francois Panisset <32653482+jfpanisset@users.noreply.github.com>
This commit is contained in:
patchback[bot] 2021-12-13 21:59:32 +01:00 committed by GitHub
parent c34fb01462
commit 4e14c429c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- nmcli - pass ``flags``, ``ingress``, ``egress`` params to ``nmcli`` (https://github.com/ansible-collections/community.general/issues/1086).

View file

@ -1332,6 +1332,9 @@ class Nmcli(object):
options.update({ options.update({
'vlan.id': self.vlanid, 'vlan.id': self.vlanid,
'vlan.parent': self.vlandev, 'vlan.parent': self.vlandev,
'vlan.flags': self.flags,
'vlan.ingress': self.ingress,
'vlan.egress': self.egress,
}) })
elif self.type == 'vxlan': elif self.type == 'vxlan':
options.update({ options.update({