Merge "Display puppet apply results right after running"

This commit is contained in:
Jenkins 2015-07-08 21:10:51 +00:00 committed by Gerrit Code Review
commit c980672d9c
2 changed files with 1 additions and 2 deletions

View File

@ -105,5 +105,3 @@ find applytest -name 'puppetapplytest*.final' -print0
find applytest -name 'puppetapplytest*.final' -print0 | \
xargs -0 -P $(nproc) -n 1 -I filearg \
./tools/test_puppet_apply.sh filearg
cat applytest/*.out

View File

@ -20,4 +20,5 @@ echo "##" > $fileout
cat $file > $fileout
sudo puppet apply --modulepath=${MODULE_PATH} --color=false --noop --verbose --debug $file >/dev/null 2>> $fileout
ret=$?
cat $fileout
exit $ret