13c405da78
The `bootstrap-aio.sh` script needs to be executed from the root of the repository. This change makes sure that this is the case just as we already do in `bootstrap-ansible.sh`. Change-Id: I975e6022e832623595f66174ebb8968bf82f5c5f
59 lines
2.0 KiB
Bash
Executable File
59 lines
2.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright 2014, Rackspace US, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
## Shell Opts ----------------------------------------------------------------
|
|
set -e -u -x
|
|
|
|
## Variables -----------------------------------------------------------------
|
|
# Extra options to pass to the AIO bootstrap process
|
|
export BOOTSTRAP_OPTS=${BOOTSTRAP_OPTS:-''}
|
|
|
|
# Store the clone repo root location
|
|
export OSA_CLONE_DIR="${OSA_CLONE_DIR:-$(readlink -f $(dirname $0)/..)}"
|
|
|
|
# This script should be executed from the root directory of the cloned repo
|
|
cd "$(dirname "${0}")/.."
|
|
|
|
## Main ----------------------------------------------------------------------
|
|
|
|
# Ensure that some of the wrapper options are overridden
|
|
# to prevent interference with the AIO bootstrap.
|
|
export ANSIBLE_INVENTORY="${OSA_CLONE_DIR}/tests/test-inventory.ini"
|
|
export ANSIBLE_VARS_PLUGINS="/dev/null"
|
|
export HOST_VARS_PATH="/dev/null"
|
|
export GROUP_VARS_PATH="/dev/null"
|
|
|
|
# Run AIO bootstrap playbook
|
|
pushd tests
|
|
if [ -z "${BOOTSTRAP_OPTS}" ]; then
|
|
ansible-playbook bootstrap-aio.yml
|
|
else
|
|
export BOOTSTRAP_OPTS_ITEMS=''
|
|
for BOOTSTRAP_OPT in ${BOOTSTRAP_OPTS}; do
|
|
BOOTSTRAP_OPTS_ITEMS=${BOOTSTRAP_OPTS_ITEMS}"-e "${BOOTSTRAP_OPT}" "
|
|
done
|
|
ansible-playbook bootstrap-aio.yml \
|
|
${BOOTSTRAP_OPTS_ITEMS}
|
|
fi
|
|
popd
|
|
|
|
# Now unset the env var overrides so that the defaults work again
|
|
unset ANSIBLE_INVENTORY
|
|
unset ANSIBLE_VARS_PLUGINS
|
|
unset HOST_VARS_PATH
|
|
unset GROUP_VARS_PATH
|
|
|