From 9b15b5d592186228883374c0940ed3e963fa58bc Mon Sep 17 00:00:00 2001 From: Philipp Grau Date: Mon, 15 Oct 2012 16:56:55 +0200 Subject: [PATCH] Use && for executing next command if, and only if, command1 returns an exit status of zero. --- docsite/rst/playbooks.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/rst/playbooks.rst b/docsite/rst/playbooks.rst index 8dd9ce9d720..e962628e6c5 100644 --- a/docsite/rst/playbooks.rst +++ b/docsite/rst/playbooks.rst @@ -212,7 +212,7 @@ who's successful exit code is not zero, you may wish to do this:: tasks: - name: run this command and ignore the result - action: shell /usr/bin/somecommand & /bin/true + action: shell /usr/bin/somecommand && /bin/true Variables can be used in action lines. Suppose you defined a variable called 'vhost' in the 'vars' section, you could do this::