From 4f6594e670d44ac1d6daf808568875ef125186af Mon Sep 17 00:00:00 2001 From: Luke Antins Date: Thu, 18 Oct 2012 02:09:11 +0100 Subject: [PATCH] Fix indent of fail module example to prevent unwanted `


` from showing up in docsite output. --- fail | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fail b/fail index ec80be3abd0..389cadd8654 100644 --- a/fail +++ b/fail @@ -42,7 +42,7 @@ options: examples: - code: | action: fail msg="The system may not be provisioned according to the CMDB status." rc=100 - only_if: "'$cmdb_status' != 'to-be-staged'" + only_if: "'$cmdb_status' != 'to-be-staged'" description: "Example playbook using fail and only_if together"