mirror of
https://github.com/offen/docker-volume-backup.git
synced 2024-11-10 00:30:29 +01:00
26 lines
869 B
Bash
26 lines
869 B
Bash
#!/bin/sh
|
|
|
|
# Copyright 2021 - Offen Authors <hioffen@posteo.de>
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
set -e
|
|
|
|
if [ ! -d "/etc/dockervolumebackup/conf.d" ]; then
|
|
BACKUP_CRON_EXPRESSION="${BACKUP_CRON_EXPRESSION:-@daily}"
|
|
|
|
echo "Installing cron.d entry with expression $BACKUP_CRON_EXPRESSION."
|
|
echo "$BACKUP_CRON_EXPRESSION backup 2>&1" | crontab -
|
|
else
|
|
echo "/etc/dockervolumebackup/conf.d was found, using configuration files from this directory."
|
|
|
|
for file in /etc/dockervolumebackup/conf.d/*; do
|
|
source $file
|
|
BACKUP_CRON_EXPRESSION="${BACKUP_CRON_EXPRESSION:-@daily}"
|
|
echo "Appending cron.d entry with expression $BACKUP_CRON_EXPRESSION and configuration file $file"
|
|
(crontab -l; echo "$BACKUP_CRON_EXPRESSION /bin/sh -c 'set -a; source $file; set +a && backup' 2>&1") | crontab -
|
|
done
|
|
fi
|
|
|
|
echo "Starting cron in foreground."
|
|
crond -f -d 8
|