Mercurial > hg > soundsoftware-site
view deploy/any/run-cron-scripts.sh @ 1616:44f001af7f6a live
Report success/failure
author | Chris Cannam |
---|---|
date | Tue, 05 Sep 2017 12:53:02 +0100 |
parents | 1c904260787b |
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