Merge pull request #198 from dw/dmw
issue #195: handle non-ASCII scripts in runner.py.pull/205/head
commit
8f54fcfca4
@ -0,0 +1,18 @@
|
||||
- name: integration/runner/custom_script_interpreter.yml
|
||||
hosts: all
|
||||
any_errors_fatal: true
|
||||
tasks:
|
||||
|
||||
- custom_bash_old_style_module:
|
||||
foo: true
|
||||
with_sequence: start=1 end={{end|default(1)}}
|
||||
register: out
|
||||
vars:
|
||||
ansible_bash_interpreter: /bin/bash
|
||||
|
||||
- assert:
|
||||
that: |
|
||||
(not out.changed) and
|
||||
(not out.results[0].changed) and
|
||||
out.results[0].msg == 'Here is my input'
|
||||
|
Loading…
Reference in New Issue