From 720574ef778bae5f03fa007ccbed6709bac9324a Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Tue, 18 Oct 2016 11:17:39 -0400 Subject: [PATCH] added allow_duplicates to include_role docs --- lib/ansible/modules/utilities/logic/include_role.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/ansible/modules/utilities/logic/include_role.py b/lib/ansible/modules/utilities/logic/include_role.py index 127313ec9f..2ddbc62355 100644 --- a/lib/ansible/modules/utilities/logic/include_role.py +++ b/lib/ansible/modules/utilities/logic/include_role.py @@ -42,6 +42,11 @@ options: - 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. required: False default: None + allow_duplicates: + description: + - Overrides the role's metadata setting to allow using a role more than once with the same parameters. + required: False + 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.