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>
20 lines
635 B
Bash
Executable File
20 lines
635 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This file is auto-generated by generate_arrays.sh
|
|
# Do not edit manually - run './scripts/source/files/generate_arrays.sh run' to regenerate
|
|
|
|
crontab_scripts=(
|
|
"crontab/app/crontab_backup_scheduler.sh"
|
|
"crontab/crontab_clean.sh"
|
|
"crontab/crontab_clear.sh"
|
|
"crontab/crontab_install.sh"
|
|
"crontab/crontab_refresh.sh"
|
|
"crontab/crontab_setup.sh"
|
|
"crontab/system/crontab_setup_system_info_updater.sh"
|
|
"crontab/task/crontab_check_processor.sh"
|
|
"crontab/task/crontab_setup_check_processor.sh"
|
|
"crontab/task/crontab_setup_task_processor.sh"
|
|
"crontab/task/crontab_task_processor.sh"
|
|
|
|
)
|