diff options
Diffstat (limited to 'test/command-check-failure.yml')
-rw-r--r-- | test/command-check-failure.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/command-check-failure.yml b/test/command-check-failure.yml new file mode 100644 index 0000000..d58c09d --- /dev/null +++ b/test/command-check-failure.yml @@ -0,0 +1,11 @@ +- hosts: localhost + tasks: + - name: command without checks + command: echo blah + args: + chdir: X + + - name: shell without checks + shell: echo blah + args: + chdir: X |