backup-bot-two/abra.sh

11 lines
367 B
Bash
Raw Normal View History

2023-09-06 23:41:03 +00:00
export BACKUPBOT_VERSION=v1
2023-09-07 23:16:44 +00:00
export SSH_CONFIG_VERSION=v1
2024-01-16 18:27:58 +00:00
run_cron () {
schedule="$(crontab -l | tr -s " " | cut -d ' ' -f-5)"
rm -f /tmp/backup.log
echo "* * * * * $(crontab -l | tr -s " " | cut -d ' ' -f6-)" | crontab -
while [ ! -f /tmp/backup.log ]; do sleep 1; done
echo "$schedule $(crontab -l | tr -s " " | cut -d ' ' -f6-)" | crontab -
}