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
433 B
Bash
Executable File
16 lines
433 B
Bash
Executable File
#!/bin/bash
|
|
|
|
checkCrontabRequirement()
|
|
{
|
|
if [[ $CFG_REQUIREMENT_CRONTAB == "true" ]]; then
|
|
### Crontab
|
|
if [[ "$ISCRON" != *"command not found"* ]] && runAsManager crontab -l 2>/dev/null | grep -q "cron is set up for $sudo_user_name"; then
|
|
isSuccessful "Crontab is successfully set up."
|
|
CRONTAB_SETUP="true"
|
|
else
|
|
isNotice "Crontab is not installed yet."
|
|
CRONTAB_SETUP="false"
|
|
((preinstallneeded++))
|
|
fi
|
|
fi
|
|
} |