13 lines
264 B
Bash
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
|