From 99c163fa7a725f04190d791e1101df484171dd48 Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Mon, 6 Feb 2017 09:02:00 -0600 Subject: [PATCH] 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 --- scripts/openstack-ansible.rc | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/openstack-ansible.rc b/scripts/openstack-ansible.rc index d7b2ab52ad..b3bd1b315f 100644 --- a/scripts/openstack-ansible.rc +++ b/scripts/openstack-ansible.rc @@ -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}"