module-mysql/tests/run_tests
2010-05-07 17:59:42 -04:00

13 lines
264 B
Bash

#!/bin/bash
export RUBYLIB=${RUBYLIB:-../plugins}
OPTIONS="$*"
OPTIONS="${OPTIONS:---trace}"
find -iname \*.pp | sort | while read current; do
echo "Running $current"
puppet $OPTIONS $current
echo "Running $current again"
puppet $OPTIONS $current
echo
done