mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-22 20:13:59 -07:00
changed collection arg to argregate on 2.4 network modules (#26649)
* changed collection arg to argregate on 2.4 network modules * replace users with aggregate in eos_user, junos_user, nxos_user * added version_added to places where we replaced users with aggregate in the docs * fix ios_static_route test * update tests to reference aggregate instead of collection/users
This commit is contained in:
parent
9d771f6eea
commit
8643e9cb34
42 changed files with 170 additions and 167 deletions
|
@ -126,7 +126,7 @@
|
|||
|
||||
- name: Create collection of linkagg definitions
|
||||
net_linkagg:
|
||||
collection:
|
||||
aggregate:
|
||||
- { name: bond0, members: [eth1, eth2] }
|
||||
- { name: bond1, members: [eth3, eth4] }
|
||||
state: present
|
||||
|
@ -144,7 +144,7 @@
|
|||
|
||||
- name: Create collection of linkagg definitions again (idempotent)
|
||||
net_linkagg:
|
||||
collection:
|
||||
aggregate:
|
||||
- { name: bond0, members: [eth1, eth2] }
|
||||
- { name: bond1, members: [eth3, eth4] }
|
||||
state: present
|
||||
|
@ -156,7 +156,7 @@
|
|||
|
||||
- name: Remove collection of linkagg definitions
|
||||
net_linkagg:
|
||||
collection:
|
||||
aggregate:
|
||||
- { name: bond0 }
|
||||
- { name: bond1 }
|
||||
state: absent
|
||||
|
@ -174,7 +174,7 @@
|
|||
|
||||
- name: Remove collection of linkagg definitions again (idempotent)
|
||||
net_linkagg:
|
||||
collection:
|
||||
aggregate:
|
||||
- { name: bond0 }
|
||||
- { name: bond1 }
|
||||
state: absent
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue