
This allows hiera data to be split into two buckets: sensitive and non-sensitive. Sensitive data is put where it always has been. Non- sensitive data, such as users ssh keys and lists of packages can be put into the data directory contained within the openstack-infra/config git repository. This also introduces a more complex hierarchy: data is now split on osfamily and lsbdistcondename. Operatingsystem is left for compatibility. Change-Id: I3b3faeab837aa5732da01e96bbe0c19aa936a58d
18 lines
744 B
Bash
Executable File
18 lines
744 B
Bash
Executable File
find . -iname '*.pp' | xargs puppet parser validate --modulepath=`pwd`/modules
|
|
for f in `find . -iname *.erb` ; do
|
|
erb -x -T '-' $f | ruby -c >/dev/null || echo "Error in $f"
|
|
done
|
|
|
|
if [ ! -d applytest ] ; then
|
|
mkdir applytest
|
|
fi
|
|
|
|
csplit -sf applytest/puppetapplytest manifests/site.pp '/^$/' {*}
|
|
sed -i -e 's/^[^[:space:]]/#&/g' applytest/puppetapplytest*
|
|
sed -i -e 's/hiera..sysadmins../["admin"]/' applytest/puppetapplytest*
|
|
sed -i -e 's/hiera..listadmins../["admin"]/' applytest/puppetapplytest*
|
|
sed -i -e 's/hiera.*/PASSWORD,/' applytest/puppetapplytest*
|
|
for f in `find applytest -name 'puppetapplytest*' -print` ; do
|
|
puppet apply --confdir=$(pwd) --modulepath=./modules:/etc/puppet/modules -v --noop --debug $f >/dev/null
|
|
done
|