module-mysql/tests/run_tests

13 lines
264 B
Bash
Executable file

#!/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