mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-07-01 16:18:55 +00:00
Fix assignments in docker tests. (#57249)
This commit is contained in:
parent
1515afd92c
commit
7cd229aa97
23 changed files with 27 additions and 27 deletions
|
|
@ -8,8 +8,8 @@
|
|||
nname_2: "{{ name_prefix ~ '-network-2' }}"
|
||||
- name: Registering container and network names
|
||||
set_fact:
|
||||
cnames: "{{ cnames }} + [cname_1, cname_2, cname_3]"
|
||||
dnetworks: "{{ dnetworks }} + [nname_1, nname_2]"
|
||||
cnames: "{{ cnames + [cname_1, cname_2, cname_3] }}"
|
||||
dnetworks: "{{ dnetworks + [nname_1, nname_2] }}"
|
||||
|
||||
- name: Create containers
|
||||
docker_container:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue