#! /bin/sh
set -e

cruft

for script in /usr/libexec/cruft/*
do
    echo $script
    $script > /dev/null
done
