Force an include to be a static task if no vars or loops are being used. (#16192)

Fixes #15735
This commit is contained in:
jctanner 2016-06-08 19:23:48 -04:00 committed by James Cammarata
parent 43d1ea0cfc
commit 73a3a5839b

View file

@ -118,7 +118,8 @@ def load_list_of_tasks(ds, play, block=None, role=None, task_include=None, use_h
is_static = t.static
else:
is_static = C.DEFAULT_TASK_INCLUDES_STATIC or \
(use_handlers and C.DEFAULT_HANDLER_INCLUDES_STATIC)
(use_handlers and C.DEFAULT_HANDLER_INCLUDES_STATIC) or \
(not templar._contains_vars(t.args['_raw_params']) and not t.loop)
if is_static:
if t.loop is not None: