Application backups were driven by one crontab entry per app, each offset by id * CFG_BACKUP_CRONTAB_APP_INTERVAL minutes. That minute offset is written straight into cron's 0-59 minute field, so past ~20 apps it overflowed into an invalid entry that silently never fired, and the fixed spacing could not serialize backups that ran longer than the gap. Replace it with a single daily entry (`libreportal backup scheduled`) that enqueues a backup task per enabled app. The existing systemd task processor drains them serially — no minute overflow, real serialization, and backups are now visible/cancellable in the Tasks UI. Per-app enable is read from CFG_<APP>_BACKUP at schedule time instead of being mirrored into crontab. Removes the stagger machinery (timing/setup/check/remove scripts), the now-unused cron_jobs table + insert, and the CFG_BACKUP_CRONTAB_APP_INTERVAL config knob and its WebUI field. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> Signed-off-by: librelad <librelad@digitalangels.vip>
36 lines
561 B
Bash
Executable File
36 lines
561 B
Bash
Executable File
#!/bin/bash
|
|
|
|
crontabToolsMenu()
|
|
{
|
|
# Enable input
|
|
stty echo
|
|
|
|
while true; do
|
|
isHeader "Crontab Menu"
|
|
isOption "1. Set up Backup Scheduler"
|
|
isOption "2. Force Crontab Reinstall"
|
|
isOption "x. Exit to Main Menu"
|
|
echo ""
|
|
isQuestion "What is your choice: "
|
|
read -rp "" crontab_menu_choice
|
|
|
|
case $crontab_menu_choice in
|
|
1)
|
|
toolsstartcrontabsetup=y
|
|
startOther;
|
|
;;
|
|
2)
|
|
toolinstallcrontab=y
|
|
startOther;
|
|
;;
|
|
x)
|
|
endStart;
|
|
|
|
;;
|
|
*)
|
|
isNotice "Invalid choice. Please select a valid option."
|
|
;;
|
|
esac
|
|
done
|
|
}
|