summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Tripp <petertripp@gmail.com>2022-12-15 13:30:21 -0500
committerGitHub <noreply@github.com>2022-12-15 13:30:21 -0500
commit69c874f4785cb3ec63d98ab065a3aecc39797012 (patch)
treef8cfc7dbb82975c0fe68844f4ce2f6f3978b9ba5
parentb7e948e6230fc744af6ac3c5c6f42fa1516eeeb8 (diff)
downloadansible-69c874f4785cb3ec63d98ab065a3aecc39797012.tar.gz
Typo in playbooks_blocks.rst (#79603)
-rw-r--r--docs/docsite/rst/playbook_guide/playbooks_blocks.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/docsite/rst/playbook_guide/playbooks_blocks.rst b/docs/docsite/rst/playbook_guide/playbooks_blocks.rst
index a628164655..805045daa3 100644
--- a/docs/docsite/rst/playbook_guide/playbooks_blocks.rst
+++ b/docs/docsite/rst/playbook_guide/playbooks_blocks.rst
@@ -43,7 +43,7 @@ All tasks in a block inherit directives applied at the block level. Most of what
become_user: root
ignore_errors: true
-In the example above, the 'when' condition will be evaluated before Ansible runs each of the three tasks in the block. All three tasks also inherit the privilege escalation directives, running as the root user. Finally, ``ignore_errors: yes`` ensures that Ansible continues to execute the playbook even if some of the tasks fail.
+In the example above, the 'when' condition will be evaluated before Ansible runs each of the three tasks in the block. All three tasks also inherit the privilege escalation directives, running as the root user. Finally, ``ignore_errors: true`` ensures that Ansible continues to execute the playbook even if some of the tasks fail.
Names for blocks have been available since Ansible 2.3. We recommend using names in all tasks, within blocks or elsewhere, for better visibility into the tasks being executed when you run the playbook.