summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Thames <will@thames.id.au>2016-12-19 20:45:01 +1000
committerJohn R Barker <john@johnrbarker.com>2016-12-19 10:45:01 +0000
commit87c0c33241cf4e08fc6668b01751a345ca34b04e (patch)
tree3b5ebee7b79333e228a929f1059053f767104bd3
parentdce445f95641d73b87281e6076faef598c1ac735 (diff)
downloadansible-87c0c33241cf4e08fc6668b01751a345ca34b04e.tar.gz
Fix include_role docs to be valid YAML (#19506)
Remove the colon from one of the documentation notes, which was causing documentation schema validation to fail.
-rw-r--r--lib/ansible/modules/utilities/logic/include_role.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/modules/utilities/logic/include_role.py b/lib/ansible/modules/utilities/logic/include_role.py
index 737de51d55..e9f7354a86 100644
--- a/lib/ansible/modules/utilities/logic/include_role.py
+++ b/lib/ansible/modules/utilities/logic/include_role.py
@@ -53,7 +53,7 @@ options:
notes:
- Handlers are made available to the whole play.
- simple dependencies seem to work fine.
- - As with C(include) this task can be static or dynamic, If static it implies that it won't need templating nor loops nor conditionals and will show included tasks in the --list options. Ansible will try to autodetect what is needed, but you can set `static: yes|no` at task level to control this.
+ - As with C(include) this task can be static or dynamic, If static it implies that it won't need templating nor loops nor conditionals and will show included tasks in the --list options. Ansible will try to autodetect what is needed, but you can set `static` to `yes` or `no` at task level to control this.
'''
EXAMPLES = """