diff --git a/scripts/bootstrap-ansible.sh b/scripts/bootstrap-ansible.sh index 27d2ca5aac..fe48b17da2 100755 --- a/scripts/bootstrap-ansible.sh +++ b/scripts/bootstrap-ansible.sh @@ -182,11 +182,6 @@ chmod +x /usr/local/bin/openstack-ansible echo "openstack-ansible wrapper created." -# Install and export the ARA callback plugin -if [ "${SETUP_ARA}" == "true" ]; then - setup_ara -fi - # If the Ansible plugins are in the old location remove them. [[ -d "/etc/ansible/plugins" ]] && rm -rf "/etc/ansible/plugins" @@ -232,4 +227,9 @@ if [ -f "${ANSIBLE_ROLE_FILE}" ]; then fi fi +# Install and export the ARA callback plugin +if [ "${SETUP_ARA}" == "true" ]; then + setup_ara +fi + echo "System is bootstrapped and ready for use."