mirror of https://github.com/ansible/ansible.git
strategy: added a space in message (#86373)
* strategy: added a space in message Signed-off-by: Abhijeet Kasurde <Akasurde@redhat.com> Co-authored-by: flowerysong <junk+github@flowerysong.com>pull/84324/head
parent
a3782f0e7d
commit
06fce4e2a2
@ -0,0 +1,5 @@
|
||||
- debug:
|
||||
msg: "Testing end_role on host {{ inventory_hostname }}"
|
||||
|
||||
- meta: end_role
|
||||
when: end_role_cond == '2'
|
||||
@ -0,0 +1,6 @@
|
||||
- name: Testing end_role with strategy {{ test_strategy | default('linear') }}
|
||||
hosts: testhost:testhost2
|
||||
gather_facts: no
|
||||
strategy: "{{ test_strategy | default('linear') }}"
|
||||
roles:
|
||||
- end_role_sample
|
||||
Loading…
Reference in New Issue