cf864be1bc
We need to export PUPPET_BASE_PATH otherwise beaker & unit CI jobs will fail to copy modules in the right path: mv /modules/openstack-integration /modules/openstack_integration Change-Id: I1c99de3f99367fb7677977fee4c5cf08afda5977
27 lines
519 B
Bash
Executable File
27 lines
519 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
if [ ! -z ${GEM_HOME} ]; then
|
|
GEM_BIN_DIR=${GEM_HOME}/bin/
|
|
fi
|
|
|
|
if [ $PUPPET_VERSION == 4 ]; then
|
|
export PUPPET_BASE_PATH=/etc/puppetlabs/code
|
|
else
|
|
export PUPPET_BASE_PATH=/etc/puppet
|
|
fi
|
|
|
|
export SCRIPT_DIR=$(cd `dirname $0` && pwd -P)
|
|
export PUPPETFILE_DIR=${PUPPETFILE_DIR:-${PUPPET_BASE_PATH}/modules}
|
|
source $SCRIPT_DIR/functions
|
|
|
|
gem install r10k --no-ri --no-rdoc
|
|
|
|
# make sure there is no puppet module pre-installed
|
|
rm -rf "${PUPPETFILE_DIR:?}/"*
|
|
|
|
install_modules
|
|
|
|
puppet module list
|