Fix Debian shellcheck validation
Homelab Main / validate (push) Waiting to run Details
Homelab Main / deploy (push) Blocked by required conditions Details

This commit is contained in:
juvenal.diaz 2026-09-25 12:04:12 -06:00
parent 4405c76003
commit b3593ce7ab
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,5 @@
# shellcheck shell=bash
plan_homelab() { plan_homelab() {
local target="${1:-all}" local target="${1:-all}"
local stack local stack
@ -2365,4 +2367,3 @@ change_journal() {
homelab_map() { homelab_map() {
"${REPO_ROOT}/scripts/homelab-map" "${@:2}" "${REPO_ROOT}/scripts/homelab-map" "${@:2}"
} }

View File

@ -47,4 +47,8 @@ run_optional "GitOps status" "${REPO_ROOT}/jeannie" gitops-status
run_optional "Public edge doctor" "${REPO_ROOT}/jeannie" doctor-edge run_optional "Public edge doctor" "${REPO_ROOT}/jeannie" doctor-edge
run_optional "Final status cascade" "${REPO_ROOT}/jeannie" status run_optional "Final status cascade" "${REPO_ROOT}/jeannie" status
printf '\nRecovery sequence complete%s.\n' "$([ "$DRY_RUN" = "true" ] && printf ' dry-run' || true)" dry_run_suffix=""
if [ "$DRY_RUN" = "true" ]; then
dry_run_suffix=" dry-run"
fi
printf '\nRecovery sequence complete%s.\n' "${dry_run_suffix}"