diff options
author | David Newswanger <gamma.dave@gmail.com> | 2017-07-26 16:09:17 +0200 |
---|---|---|
committer | Peter Sprygada <privateip@users.noreply.github.com> | 2017-07-26 16:09:17 +0200 |
commit | 8643e9cb34f042eb70adeec69aa805892c38c6ba (patch) | |
tree | 6c2b29ab7ab76ab243a4bc354b45fde56ab12c86 /test/integration/targets/vyos_user | |
parent | filesystem: workaround bug in xfs_info, use xfs_growfs instead (#25703) (diff) | |
download | ansible-8643e9cb34f042eb70adeec69aa805892c38c6ba.tar.xz ansible-8643e9cb34f042eb70adeec69aa805892c38c6ba.zip |
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_user')
-rw-r--r-- | test/integration/targets/vyos_user/tests/cli/basic.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/targets/vyos_user/tests/cli/basic.yaml b/test/integration/targets/vyos_user/tests/cli/basic.yaml index 3a4fcbbfb8..9e3df24994 100644 --- a/test/integration/targets/vyos_user/tests/cli/basic.yaml +++ b/test/integration/targets/vyos_user/tests/cli/basic.yaml @@ -15,7 +15,7 @@ - name: Collection of users (SetUp) vyos_user: - users: + aggregate: - name: ansibletest2 - name: ansibletest3 level: operator @@ -44,7 +44,7 @@ - name: Add collection of users (Idempotent) vyos_user: - users: + aggregate: - name: ansibletest2 - name: ansibletest3 level: operator |