mirror of
https://github.com/ansible-collections/community.routeros.git
synced 2025-06-24 18:58:41 +02:00
Change default for ddns-enabled to "auto" for RouterOS 7.17 and newer (#350)
From the RouterOS 7.17 changelog: > *) cloud - changed ddns-enabled setting from "no" to "auto" (service > is enabled when BTH is enabled); `no` is not supported anymore, only `yes` and `auto` are.
This commit is contained in:
parent
30a79061f3
commit
8736996317
2 changed files with 6 additions and 1 deletions
2
changelogs/fragments/350-ip-cloud-ddns-enabled-auto.yml
Normal file
2
changelogs/fragments/350-ip-cloud-ddns-enabled-auto.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
minor_changes:
|
||||||
|
- api_info, api_modify - change default for ``/ip/cloud/ddns-enabled`` for RouterOS 7.17 and newer from ``yes`` to ``auto`` (https://github.com/ansible-collections/community.routeros/pull/350).
|
|
@ -2777,8 +2777,11 @@ PATHS = {
|
||||||
unversioned=VersionedAPIData(
|
unversioned=VersionedAPIData(
|
||||||
single_value=True,
|
single_value=True,
|
||||||
fully_understood=True,
|
fully_understood=True,
|
||||||
|
versioned_fields=[
|
||||||
|
([('7.17', '<')], 'ddns-enabled', KeyInfo(default=False)),
|
||||||
|
([('7.17', '>=')], 'ddns-enabled', KeyInfo(default='auto')),
|
||||||
|
],
|
||||||
fields={
|
fields={
|
||||||
'ddns-enabled': KeyInfo(default=False),
|
|
||||||
'ddns-update-interval': KeyInfo(default='none'),
|
'ddns-update-interval': KeyInfo(default='none'),
|
||||||
'update-time': KeyInfo(default=True),
|
'update-time': KeyInfo(default=True),
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue