mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
nmcli: Fix ipv6.dns not being recongnized as list (#3563)
* nmcli: Fix ipv6.dns not being recongnized as list There was a missing comma on the previous line. * nmcli: Add changelog fragment for #3563 * nmcli: Update changelogs/fragments/3563-nmcli-ipv6_dns.yaml Make the fix description more descriptive Co-authored-by: Ajpantuso <ajpantuso@gmail.com> * nmcli: Remove ipv4.route-metric from list-typed properties Co-authored-by: Ajpantuso <ajpantuso@gmail.com> * nmcli: Update fragment 3563 with ipv4.route-metric bug Co-authored-by: Ajpantuso <ajpantuso@gmail.com>
This commit is contained in:
parent
a68445486e
commit
e7e2ab94da
2 changed files with 3 additions and 1 deletions
3
changelogs/fragments/3563-nmcli-ipv6_dns.yaml
Normal file
3
changelogs/fragments/3563-nmcli-ipv6_dns.yaml
Normal file
|
@ -0,0 +1,3 @@
|
|||
bugfixes:
|
||||
- nmcli - fixed ``dns6`` option handling so that it is treated as a list internally (https://github.com/ansible-collections/community.general/pull/3563).
|
||||
- nmcli - fixed ``ipv4.route-metric`` being in properties of type list (https://github.com/ansible-collections/community.general/pull/3563).
|
|
@ -1472,7 +1472,6 @@ class Nmcli(object):
|
|||
'ipv4.dns-search',
|
||||
'ipv4.routes',
|
||||
'ipv4.routing-rules',
|
||||
'ipv4.route-metric'
|
||||
'ipv6.dns',
|
||||
'ipv6.dns-search',
|
||||
'802-11-wireless-security.group',
|
||||
|
|
Loading…
Reference in a new issue