22 lines
293 B
Bash
22 lines
293 B
Bash
#!/bin/sh
|
|
|
|
. /app/includes.sh
|
|
|
|
# rclone command
|
|
if [[ "$1" == "rclone" ]]; then
|
|
$*
|
|
|
|
exit 0
|
|
fi
|
|
|
|
function configure_cron() {
|
|
echo "${CRON} sh /app/backup.sh > /dev/stdout" >> /etc/crontabs/root
|
|
}
|
|
|
|
init_env
|
|
check_rclone_connection
|
|
configure_cron
|
|
|
|
# foreground run crond
|
|
crond -l 2 -f
|