#!/bin/bash if [[ ! -e /dev/shm/iank-status ]]; then exit 0 fi eval $(< /dev/shm/iank-status) out=$(find /var/local/cron-errors /home/iank/cron-errors /sysd-mail-once-state -type f) if [[ $out ]]; then echo HOSTNAME: $HOSTNAME printf "%s\n" "$out" fi if [[ $HOSTNAME != "$MAIL_HOST" ]]; then exit 0 fi for h in {li,bk,je}.b8.nz; do out=$(ssh $h find /m/md/bounces/new /var/local/cron-errors /home/iank/cron-errors /sysd-mail-once-state -type f) if [[ $out ]]; then echo $h: printf "%s\n" "$out" fi done