view deploy/provision.d/140-cron.sh @ 1628:9c5f8e24dadc live tip

Quieten this cron script
author Chris Cannam
date Tue, 25 Aug 2020 11:38:49 +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