Use upstream profile_tasks callback

This patch allows OSA to use the existing profile_tasks callback
that comes with Ansible. It has been updated to the 2.0 callback
spec and provides more useful data than our existing custom
callback.

Depends-On: I2f5160bd3852615864310cff3c208a469d367e92
Change-Id: I3abe6c189f5d5c141e269e1d9a63bbdf4c1ecd8c
This commit is contained in:
Major Hayden 2017-02-06 09:02:00 -06:00
parent 14b8f0d4f7
commit 99c163fa7a

View File

@ -26,6 +26,7 @@ export ANSIBLE_LOOKUP_PLUGINS="${ANSIBLE_LOOKUP_PLUGINS:-/etc/ansible/roles/plug
export ANSIBLE_FILTER_PLUGINS="${ANSIBLE_FILTER_PLUGINS:-/etc/ansible/roles/plugins/filter}"
export ANSIBLE_ACTION_PLUGINS="${ANSIBLE_ACTION_PLUGINS:-/etc/ansible/roles/plugins/action}"
export ANSIBLE_CALLBACK_PLUGINS="${ANSIBLE_CALLBACK_PLUGINS:-/etc/ansible/roles/plugins/callback}"
export ANSIBLE_CALLBACK_WHITELIST="profile_tasks"
export ANSIBLE_TEST_PLUGINS="${ANSIBLE_TEST_PLUGINS:-/etc/ansible/roles/plugins/test}"
export ANSIBLE_GATHERING="${ANSIBLE_GATHERING:-smart}"