LibrePortal/scripts/crontab/task/crontab_setup_task_processor.sh
librelad 6bb04533fa fix(desudo): manager->self sudo drops -> runAsManager (scoped-sudoers safe)
The scoped sudoers grants the manager (root) and (dockerinstall) but NOT
(itself), so the many 'sudo -u $sudo_user_name <cmd>' calls (crontab,
git/update, reinstall, swapfile, …) failed with 'a password is required'
once per CLI command. runAsManager runs the command plainly when already
the manager (the runtime case) and only sudo -u's when root (install
time), so it's correct in both contexts and needs no sudoers self-grant.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Signed-off-by: librelad <librelad@digitalangels.vip>
2026-05-24 18:40:19 +01:00

27 lines
896 B
Bash
Executable File

#!/bin/bash
crontabSetupTaskProcessor()
{
local task_processor_script="$install_scripts_dir/crontab/task/crontab_task_processor.sh"
local task_dir="$containers_dir/libreportal/frontend/data/tasks"
# Update TASK_DIR in the task processor script
if [ -f "$task_processor_script" ]; then
sed -i "s|TASK_DIR=\".*\"|TASK_DIR=\"$task_dir\"|g" "$task_processor_script"
chmod +x $task_processor_script
else
isNotice "Task processor script not found"
fi
local cronEntry="* * * * * $task_processor_script start_script"
# Check if already in crontab
if runAsManager crontab -l 2>/dev/null | grep -q "crontab_task_processor.sh"; then
isNotice "Task processor already in crontab"
else
# Add to crontab
(runAsManager crontab -l 2>/dev/null; echo "$cronEntry") | runAsManager crontab -
isSuccessful "Continuous task processor added to crontab."
fi
}