Updates ansible role requirements script name

This change fixes an issue where the ansible role requirements
script in bootstrap-ansible.sh was referencing a script that no
longer exists.

Old Name:
  scripts/os-ansible-role-requirements.py

New Name:
  scripts/openstack-ansible-role-requirements.py

Change-Id: I80049d0544de6edb8bf4830463d3090c05236209
Closes-Bug: #1501438
This commit is contained in:
Kevin Carter 2015-09-30 12:36:59 -05:00 committed by Jesse Pretorius
parent 079f07b359
commit c2d8c18589
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ pip2 install "${ANSIBLE_WORKING_DIR}" || pip install "${ANSIBLE_WORKING_DIR}"
if [ -f "${ANSIBLE_ROLE_FILE}" ];then
# Update or create the roles manifest
if [ "${UPDATE_ANSIBLE_REQUIREMENTS}" == "yes" ];then
./scripts/os-ansible-role-requirements.py --requirement-file ${ANSIBLE_ROLE_FILE} update
scripts/openstack-ansible-role-requirements.py --requirement-file ${ANSIBLE_ROLE_FILE} update
fi
# Pull all required roles.
ansible-galaxy install --role-file=${ANSIBLE_ROLE_FILE} \