summaryrefslogtreecommitdiff
path: root/test/integration/targets/vyos_linkagg
diff options
context:
space:
mode:
authorDavid Newswanger <gamma.dave@gmail.com>2017-07-26 10:09:17 -0400
committerPeter Sprygada <privateip@users.noreply.github.com>2017-07-26 10:09:17 -0400
commit8643e9cb34f042eb70adeec69aa805892c38c6ba (patch)
tree6c2b29ab7ab76ab243a4bc354b45fde56ab12c86 /test/integration/targets/vyos_linkagg
parent9d771f6eeaf74d2b3fe866e35cc56b02598e5d01 (diff)
downloadansible-8643e9cb34f042eb70adeec69aa805892c38c6ba.tar.gz
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
Diffstat (limited to 'test/integration/targets/vyos_linkagg')
-rw-r--r--test/integration/targets/vyos_linkagg/tests/cli/basic.yaml8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/integration/targets/vyos_linkagg/tests/cli/basic.yaml b/test/integration/targets/vyos_linkagg/tests/cli/basic.yaml
index 3142d3da1b..0b66905de4 100644
--- a/test/integration/targets/vyos_linkagg/tests/cli/basic.yaml
+++ b/test/integration/targets/vyos_linkagg/tests/cli/basic.yaml
@@ -127,7 +127,7 @@
- name: Create collection of linkagg definitions
vyos_linkagg:
- collection:
+ aggregate:
- { name: bond0, members: [eth1] }
- { name: bond1, members: [eth2] }
state: present
@@ -143,7 +143,7 @@
- name: Create collection of linkagg definitions again (idempotent)
vyos_linkagg:
- collection:
+ aggregate:
- { name: bond0, members: [eth1] }
- { name: bond1, members: [eth2] }
state: present
@@ -155,7 +155,7 @@
- name: Remove collection of linkagg definitions
vyos_linkagg:
- collection:
+ aggregate:
- { name: bond0 }
- { name: bond1 }
state: absent
@@ -171,7 +171,7 @@
- name: Remove collection of linkagg definitions again (idempotent)
vyos_linkagg:
- collection:
+ aggregate:
- { name: bond0 }
- { name: bond1 }
state: absent