From 477db9c37c5116038f8d919a2377a3398db7674b Mon Sep 17 00:00:00 2001 From: K Jonathan Harker Date: Thu, 29 May 2014 15:21:55 -0700 Subject: [PATCH] Get all of the puppet-apply errors Instead of stopping at the first error, keep going and report all of the errors. Change-Id: I940f3a263164c8d1b13b525fb825d9f3eaf316a0 --- test.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test.sh b/test.sh index c2313d46e7..129fe6e611 100755 --- a/test.sh +++ b/test.sh @@ -11,6 +11,9 @@ csplit -sf applytest/puppetapplytest manifests/site.pp '/^$/' {*} sed -i -e 's/^[^[:space:]]/#&/g' applytest/puppetapplytest* sed -i -e 's@hiera(.\([^.]*\).,\([^)]*\))@\2@' applytest/puppetapplytest* +set +e +RETURN=0 for f in `find applytest -name 'puppetapplytest*' -print` ; do - sudo puppet apply --modulepath=${MODULE_PATH} --noop --verbose --debug $f >/dev/null + sudo puppet apply --modulepath=${MODULE_PATH} --noop --verbose --debug $f >/dev/null || RETURN=1 done +exit $RETURN