2018-05-04 17:17:31 +00:00
|
|
|
- name: integration/runner/custom_bash_old_style_module.yml
|
2018-04-22 18:40:58 +00:00
|
|
|
hosts: test-targets
|
2018-04-04 23:11:29 +00:00
|
|
|
any_errors_fatal: true
|
2018-04-02 07:05:37 +00:00
|
|
|
tasks:
|
2018-04-18 14:43:54 +00:00
|
|
|
|
|
|
|
- custom_bash_old_style_module:
|
2018-04-02 07:05:37 +00:00
|
|
|
foo: true
|
2018-04-04 19:01:23 +00:00
|
|
|
with_sequence: start=1 end={{end|default(1)}}
|
|
|
|
register: out
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that: |
|
|
|
|
(not out.changed) and
|
|
|
|
(not out.results[0].changed) and
|
|
|
|
out.results[0].msg == 'Here is my input'
|