15 lines
202 B
Plaintext
Raw Normal View History

# Lokale Einzelchecks
if cd munin-scripts
then
for skript in $(ls)
do
if [ -x "$skript" ] ; then
echo "<<<munin-$skript>>>"
./$skript
./$skript config
fi
done
cd ..
fi