# Cron snippet which concatenates the ignore files into a single file
# /etc/logdigest/ignores.autogenerated, pruned by spaces.
#
# That file can be used by other programs (e.g. eddie-tool) for 
# log-scanning.
-*/30 * * * *   root    cd /etc/logdigest && f=ignore.all.autogenerated; if ! [ -e $f ]; then touch $f; chmod 600 $f; fi; grep -h -v "^[[:space:]]*$" ignore ignore.local > $f
