Add missing acquire_lock to 8 scripts across Docker_Essentials, Rsync, Partnership, Old_Arch

docker_container_stop, docker_update, docker_update_remaining — concurrent Docker
operations on the same containers would conflict; now locked.

rsync.sh — two rsync processes running against the same share simultaneously
would produce incomplete or corrupted mirrors; now locked.

partnership_onboard, ssh_setup — one-shot setup scripts that mutate SSH config and
deploy containers; concurrent runs would produce undefined state; now locked.

Old_Arch_Still_Works: arr_cleanup, continuous_scripts_status — legacy scripts still
sourcing load_config.sh; added lock for consistency even in old-arch context.

partnership_manager.sh intentionally left unchanged — it uses a conditional lock
that excludes read-only "check" mode and "offboard" mode (which delegates to
partnership_offboard.sh, which has its own lock).
This commit is contained in:
Gmer4Lfe
2026-05-20 18:03:03 -04:00
parent 5c13495a6c
commit 740710e0d0
8 changed files with 16 additions and 0 deletions
+2
View File
@@ -142,6 +142,8 @@ if [[ "$EUID" -ne 0 ]]; then
exit 1
fi
acquire_lock
if ! command -v docker &>/dev/null; then
error "Docker command not found"
exit 1