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>
12 lines
381 B
Bash
Executable File
12 lines
381 B
Bash
Executable File
#!/bin/bash
|
|
|
|
gitUntrackFiles()
|
|
{
|
|
# Fixing the issue where the git does not use the .gitignore
|
|
cd $script_dir
|
|
local result=$(runAsManager git config core.fileMode false)
|
|
checkSuccess "Removing configs and logs from git for git changes"
|
|
local result=$(runAsManager git commit -m "Stop tracking ignored files")
|
|
checkSuccess "Removing tracking ignored files"
|
|
}
|