- docker_run: in rooted mode run docker AS the manager via the docker group (no sudo); the type=='sudo' branch was unreachable dead code - 8 db helpers: fix 'command -v sudo sqlite3' guard to 'command -v sqlite3' (bodies already query via runInstallOp) - restic/kopia single-file dump: write target_file via runBackupOp tee (as the backup user, matching the snapshot-restore path) instead of root tee - adguard auth: root-owned scratch via runSystem mktemp Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> Signed-off-by: librelad <librelad@digitalangels.vip>
17 lines
530 B
Bash
Executable File
17 lines
530 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Run a docker command-line string in the right context for the install mode.
|
|
# rootless -> as the docker install user (owns the rootless daemon + socket)
|
|
# rooted -> as the manager (in the docker group, talks to the root socket
|
|
# directly — no sudo)
|
|
dockerCommandRun()
|
|
{
|
|
local command="$1"
|
|
|
|
if [[ $CFG_DOCKER_INSTALL_TYPE == "rootless" ]]; then
|
|
dockerCommandRunInstallUser "$command"
|
|
elif [[ $CFG_DOCKER_INSTALL_TYPE == "rooted" ]]; then
|
|
bash -c "$command"
|
|
fi
|
|
}
|