mirror of
https://github.com/ansible-collections/community.routeros.git
synced 2025-07-02 22:34:37 +02:00
Remove default value for "running" field in "interface wireless" (#264)
The `running` field can't be configured. By having a default value it's written and shows up in diffs.
This commit is contained in:
parent
ffd5a6370c
commit
84009262d0
2 changed files with 3 additions and 1 deletions
2
changelogs/fragments/264-wireless-running-default.yml
Normal file
2
changelogs/fragments/264-wireless-running-default.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
minor_changes:
|
||||
- api_info, api_modify - remove default value for read-only ``running`` field in ``interface wireless`` (https://github.com/ansible-collections/community.routeros/pull/264).
|
|
@ -1932,7 +1932,7 @@ PATHS = {
|
|||
'radio-name': KeyInfo(),
|
||||
'rate-selection': KeyInfo(default='advanced'),
|
||||
'rate-set': KeyInfo(default='default'),
|
||||
'running': KeyInfo(default=False, read_only=True),
|
||||
'running': KeyInfo(read_only=True),
|
||||
'rx-chains': KeyInfo(default='0,1'),
|
||||
'scan-list': KeyInfo(default='default'),
|
||||
'secondary-frequency': KeyInfo(default=''),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue