view deploy/any/run-cron-scripts.sh @ 1628:9c5f8e24dadc live tip

Quieten this cron script
author Chris Cannam
date Tue, 25 Aug 2020 11:38:49 +0100
parents 44f001af7f6a
children
line wrap: on
line source
#!/bin/bash

set -e

cd /var/www/code

for t in minutely hourly daily monthly; do
    for s in deploy/config/cron.$t/[0-9]* ; do
        name=$(basename $s)
        actual="/etc/cron.$t/$name"
        echo "Running cron script $actual..."
        if "$actual"; then
            echo "Cron script $actual ran successfully"
        else
            echo "Cron script $actual failed with error code $?"
            exit 1
        fi
    done
done