The task processor is a systemd-service daemon, not a cron job — move it out of the misleadingly-named scripts/crontab/task/ to scripts/task/. To stop the systemd unit from baking the processor's in-tree path (the footprint coupling that forces a reinstall on every reorg), the unit now ExecStarts the stable wrapper: /usr/local/bin/libreportal __task-processor. start.sh intercepts that early (after paths.sh, before the heavy load), exports install_scripts_dir, and exec's the processor with start_script. Future moves/renames need only the one hand-off updated + a regen — no footprint bump. - git mv scripts/crontab/task -> scripts/task (filenames kept; cron-watchdog grep + function names unchanged) - libreportal-svc: ExecStart -> stable wrapper launcher - start.sh: __task-processor internal launcher (export install_scripts_dir; exec) - crontab_task_processor.sh: fix self-location ../.. -> .. for the new 1-level depth (latent bug the move would otherwise have introduced) - regen files_*/function_manifest; add task_scripts to the app/cli aggregates - footprint_version 3 -> 4 (root-owned svc unit changed -> needs a root reinstall) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Signed-off-by: librelad <librelad@digitalangels.vip>
30 lines
691 B
Bash
Executable File
30 lines
691 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Used for the cli
|
|
files_libreportal_cli=(
|
|
"${app_scripts[@]}"
|
|
"${backup_scripts[@]}"
|
|
"${checks_scripts[@]}"
|
|
"${cli_scripts[@]}"
|
|
"${config_scripts[@]}"
|
|
"${crontab_scripts[@]}"
|
|
"${database_scripts[@]}"
|
|
"${docker_scripts[@]}"
|
|
"${function_scripts[@]}"
|
|
"${install_scripts[@]}"
|
|
"${logs_scripts[@]}"
|
|
"${menu_scripts[@]}"
|
|
"${migrate_scripts[@]}"
|
|
"${network_scripts[@]}"
|
|
"${os_scripts[@]}"
|
|
"${peer_scripts[@]}"
|
|
"${restore_scripts[@]}"
|
|
"${setup_scripts[@]}"
|
|
"${source_scripts[@]}"
|
|
"${ssh_scripts[@]}"
|
|
"${start_scripts[@]}"
|
|
"${task_scripts[@]}"
|
|
"${update_scripts[@]}"
|
|
"${webui_scripts[@]}"
|
|
)
|