ba8ee11132
readlink on OSX does not support the -f option. As an alternative, we can use pwd -P to resolve the path. Change-Id: Ibaeadea9685f7a9603198ed1a509176cf70f9b21 Closes-Bug: #1506504
21 lines
383 B
Bash
Executable File
21 lines
383 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
if [ ! -z ${GEM_HOME} ]; then
|
|
GEM_BIN_DIR=${GEM_HOME}/bin/
|
|
fi
|
|
|
|
export SCRIPT_DIR=$(cd `dirname $0` && pwd -P)
|
|
export PUPPETFILE_DIR=${PUPPETFILE_DIR:-/etc/puppet/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
|