Mercurial > hg > soundsoftware-site
view deploy/provision.d/140-cron.sh @ 1609:5486a5848ad8 deploy
Load from deploy-source root, not deployed root (consistent with check in prepare.sh)
author | Chris Cannam |
---|---|
date | Tue, 29 Aug 2017 11:52:36 +0100 |
parents | 073a75bf07fb |
children |
line wrap: on
line source
#!/bin/bash set -e # Copy cron scripts to the appropriate destinations cd /var/www/code if [ ! -d /etc/cron.minutely ]; then mkdir -p /etc/cron.minutely echo '* * * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.minutely )' >> /etc/crontab fi for t in minutely hourly daily monthly; do for s in deploy/config/cron.$t/[0-9]* ; do name=$(basename $s) dest="/etc/cron.$t/$name" if [ ! -f "$dest" ]; then cp "$s" "$dest" chmod +x "$dest" fi done done