The backup engine already drops to the backup user (sudo -E -u $docker_install_user) and backupLocationOwner == $docker_install_user, which is exactly what runFileOp/runFileWrite resolve to in both modes. So convert the raw-sudo data ops (mkdir/chmod/rm/find/cat/grep/mv/chown/tee on backup repos, location configs, keys, manifests) to runFileOp/runFileWrite — creating files as the owner directly, no root chown. backup_verify creates its scratch as the backup user (runFileOp mktemp) instead of chown-after. Binary installs (kopia tar/install, borg dnf) -> runSystem. The 44 sudo -u engine drops stay (already least-privilege; the scoped sudoers will grant them). Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> Signed-off-by: librelad <librelad@digitalangels.vip>
73 lines
1.8 KiB
Bash
73 lines
1.8 KiB
Bash
#!/bin/bash
|
|
|
|
resticInitLocation()
|
|
{
|
|
local idx="$1"
|
|
|
|
if ! resticLocationEnabled "$idx"; then
|
|
isNotice "Location $(resticLocationName "$idx") disabled — skipping init"
|
|
return 0
|
|
fi
|
|
|
|
resticEnvExport "$idx" || return 1
|
|
|
|
if [[ "$(resticLocationType "$idx")" == "local" ]]; then
|
|
runFileOp mkdir -p "$RESTIC_REPOSITORY"
|
|
runFileOp chown -R "$docker_install_user":"$docker_install_user" "$RESTIC_REPOSITORY"
|
|
fi
|
|
|
|
if sudo -E -u "$docker_install_user" restic snapshots --json --no-lock >/dev/null 2>&1; then
|
|
isNotice "$(resticLocationName "$idx") already initialized at $RESTIC_REPOSITORY"
|
|
resticEnvUnset
|
|
return 0
|
|
fi
|
|
|
|
isNotice "Initializing $(resticLocationName "$idx") at $RESTIC_REPOSITORY"
|
|
if sudo -E -u "$docker_install_user" restic init; then
|
|
isSuccessful "$(resticLocationName "$idx") initialized"
|
|
else
|
|
isError "Failed to initialize $(resticLocationName "$idx")"
|
|
resticEnvUnset
|
|
return 1
|
|
fi
|
|
|
|
resticEnvUnset
|
|
}
|
|
|
|
resticInitAllLocations()
|
|
{
|
|
isHeader "Backup Location Initialization"
|
|
local idx
|
|
while IFS= read -r idx; do
|
|
[[ -z "$idx" ]] && continue
|
|
resticInitLocation "$idx"
|
|
done < <(resticEnabledLocations)
|
|
}
|
|
|
|
resticEnsureLocationReady()
|
|
{
|
|
local idx="$1"
|
|
[[ -z "$idx" ]] && return 1
|
|
|
|
if ! resticLocationEnabled "$idx"; then
|
|
return 1
|
|
fi
|
|
|
|
if ! command -v restic >/dev/null 2>&1; then
|
|
resticInstall || return 1
|
|
fi
|
|
resticInitLocation "$idx"
|
|
}
|
|
|
|
resticEnsureAllLocationsReady()
|
|
{
|
|
if ! command -v restic >/dev/null 2>&1; then
|
|
resticInstall || return 1
|
|
fi
|
|
local idx
|
|
while IFS= read -r idx; do
|
|
[[ -z "$idx" ]] && continue
|
|
resticEnsureLocationReady "$idx"
|
|
done < <(resticEnabledLocations)
|
|
}
|