summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Cammarata <jimi@sngx.net>2015-07-15 15:11:46 -0400
committerJames Cammarata <jimi@sngx.net>2015-07-15 15:11:46 -0400
commitba7243c5f94b4fcd5ffcfe6edd17d3fb4e9c9eac (patch)
tree848665e55e1d85e27e3b0381a290ebafece1dd6e
parent291f07242cb59457687eede689a7948c41c68d2c (diff)
downloadansible-ba7243c5f94b4fcd5ffcfe6edd17d3fb4e9c9eac.tar.gz
Don't set changed for include tasks
Fixes #11197
-rw-r--r--lib/ansible/executor/task_executor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/executor/task_executor.py b/lib/ansible/executor/task_executor.py
index 287c7431b4..0694634690 100644
--- a/lib/ansible/executor/task_executor.py
+++ b/lib/ansible/executor/task_executor.py
@@ -243,7 +243,7 @@ class TaskExecutor:
include_variables = self._task.args.copy()
include_file = include_variables.get('_raw_params')
del include_variables['_raw_params']
- return dict(changed=True, include=include_file, include_variables=include_variables)
+ return dict(include=include_file, include_variables=include_variables)
# get the connection and the handler for this execution
self._connection = self._get_connection(variables)