summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Coca <brian.coca+git@gmail.com>2016-10-18 11:17:39 -0400
committerBrian Coca <brian.coca+git@gmail.com>2016-10-18 11:18:12 -0400
commit6e74aa9fbdea18ff0770dd5fb0a38fa0b556bc19 (patch)
tree6ec8dc99eabd1680e4139205ca15ed96fec401e6
parent3266efb02fcd80e60b8a9e4a783fc31e8249a523 (diff)
downloadansible-modules-core-6e74aa9fbdea18ff0770dd5fb0a38fa0b556bc19.tar.gz
added allow_duplicates to include_role docs
-rw-r--r--utilities/logic/include_role.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/utilities/logic/include_role.py b/utilities/logic/include_role.py
index 127313ec..360d5f5a 100644
--- a/utilities/logic/include_role.py
+++ b/utilities/logic/include_role.py
@@ -40,8 +40,11 @@ options:
static:
description:
- Gives Ansible a hint if this is a 'static' include or not. If static it implies that it won't need templating nor loops nor conditionals and will show included tasks in the --list options.
+ allow_duplicates:
+ description:
+ - Overrides the role's metadata setting to allow using a role more than once with the same parameters.
required: False
- default: None
+ default: True
private:
description:
- If True the variables from defaults/ and vars/ in a role will not be made available to the rest of the play.