mirror of
https://github.com/ansible-collections/community.routeros.git
synced 2025-06-24 18:58:41 +02:00
Fix IPv6 address 'from-pool' default value (#270)
* Fix ipv6 address 'from-pool' default value * Add changelog fragment for #270
This commit is contained in:
parent
506b3eba39
commit
99581a00f7
2 changed files with 3 additions and 1 deletions
|
@ -0,0 +1,2 @@
|
||||||
|
minor_changes:
|
||||||
|
- api_info, api_modify - add default value for ``from-pool`` field in ``/ipv6 address`` (https://github.com/ansible-collections/community.routeros/pull/270).
|
|
@ -1397,7 +1397,7 @@ PATHS = {
|
||||||
'comment': KeyInfo(can_disable=True, remove_value=''),
|
'comment': KeyInfo(can_disable=True, remove_value=''),
|
||||||
'disabled': KeyInfo(default=False),
|
'disabled': KeyInfo(default=False),
|
||||||
'eui-64': KeyInfo(default=False),
|
'eui-64': KeyInfo(default=False),
|
||||||
'from-pool': KeyInfo(),
|
'from-pool': KeyInfo(default=''),
|
||||||
'interface': KeyInfo(required=True),
|
'interface': KeyInfo(required=True),
|
||||||
'no-dad': KeyInfo(default=False),
|
'no-dad': KeyInfo(default=False),
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue