mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-08 13:07:19 +00:00
nmcli: add autoconnect priority and retries (#10134)
* Add autoconnect priority and retries * Add changelog fragment * remove trailing whitespace, fix autoconnect_retries typo in doc * Remove defaults, reformatting Co-authored-by: Felix Fontein <felix@fontein.de> * remove defaults from everywhere * add new params in bond connection test * Change version_added to 11.0.0 Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com> --------- Co-authored-by: Felix Fontein <felix@fontein.de> Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
parent
35d736f78b
commit
0355a5f4a1
3 changed files with 23 additions and 0 deletions
|
|
@ -4350,6 +4350,8 @@ def test_bond_connection_unchanged(mocked_generic_connection_diff_check, capfd):
|
|||
argument_spec=dict(
|
||||
ignore_unsupported_suboptions=dict(type='bool', default=False),
|
||||
autoconnect=dict(type='bool', default=True),
|
||||
autoconnect_priority=dict(type='int'),
|
||||
autoconnect_retries=dict(type='int'),
|
||||
state=dict(type='str', required=True, choices=['absent', 'present']),
|
||||
conn_name=dict(type='str', required=True),
|
||||
conn_reload=dict(type='bool', required=False, default=False),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue