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>
16 lines
505 B
Bash
Executable File
16 lines
505 B
Bash
Executable File
#!/bin/bash
|
|
|
|
crontabSetupSystemInfoUpdater()
|
|
{
|
|
local cronEntry="* * * * * libreportal webui generate system >/dev/null 2>&1"
|
|
|
|
# Check if already in crontab
|
|
if runAsManager crontab -l 2>/dev/null | grep -q "libreportal webui generate system"; then
|
|
isNotice "System info updater already in crontab"
|
|
else
|
|
# Add to crontab
|
|
(runAsManager crontab -l 2>/dev/null; echo "$cronEntry") | runAsManager crontab -
|
|
isSuccessful "System info updater added to crontab (every 1 minute)."
|
|
fi
|
|
}
|