diff --git a/tests/fixtures/config/ansible/git/common-config/playbooks/hello-post.yaml b/tests/fixtures/config/ansible/git/common-config/playbooks/hello-post.yaml index d528be1d4e..36a22e415d 100644 --- a/tests/fixtures/config/ansible/git/common-config/playbooks/hello-post.yaml +++ b/tests/fixtures/config/ansible/git/common-config/playbooks/hello-post.yaml @@ -10,3 +10,7 @@ that: - st.stat.exists - st.stat.isreg + + - name: Simple shell task. + shell: |+ + echo "Hello world" diff --git a/zuul/ansible/library/command.py b/zuul/ansible/library/command.py index d27c83ea24..f701b489c6 100644 --- a/zuul/ansible/library/command.py +++ b/zuul/ansible/library/command.py @@ -409,9 +409,9 @@ def zuul_run_command(self, args, zuul_log_id, check_rc=False, close_fds=True, ex if t.isAlive(): console.addLine("[Zuul] standard output/error still open " "after child exited") - if not ret and fail_json_kwargs: + if ret is None and fail_json_kwargs: ret = fail_json_kwargs['rc'] - elif not ret and not fail_json_kwargs: + elif ret is None and not fail_json_kwargs: ret = -1 console.addLine("[Zuul] Task exit code: %s\n" % ret) if ret == -1 and not fail_json_kwargs: