From 3653a39fd8f988ea862cb73946a2ffe616720641 Mon Sep 17 00:00:00 2001 From: librelad Date: Wed, 17 Jun 2026 17:30:36 +0100 Subject: [PATCH] chore(config): quiet per-file reconcile output, drop backup note MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The config reconcile pass printed one 'Reconciled config: (backup: ..bak)' line per changed file. Drop the per-file message entirely: the intro notice and the two per-section '...completed.' confirmations are enough, and the backup mention added noise. The hidden ..bak sibling is still written for safety — it's just no longer announced. Co-Authored-By: Claude Opus 4.8 Signed-off-by: librelad --- scripts/config/core/variables/config_scan_variables.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/config/core/variables/config_scan_variables.sh b/scripts/config/core/variables/config_scan_variables.sh index d5eb46a..b77181c 100755 --- a/scripts/config/core/variables/config_scan_variables.sh +++ b/scripts/config/core/variables/config_scan_variables.sh @@ -92,7 +92,9 @@ reconcileConfigFile() local bak_file="${live%/*}/.${live##*/}.bak" runCfgOp cp -a "$live" "$bak_file" { [[ -n "$containers_dir" && "$live" == "$containers_dir"* ]] && runFileWrite "$live" < "$tmp" || runInstallOp cp "$tmp" "$live"; } - isSuccessful "Reconciled config: $(basename "$live") (backup: ${bak_file##*/})" + # A hidden ..bak sibling is still written above for safety; the + # per-file result is intentionally silent — the intro notice and the + # per-section "...completed." lines are the only reconcile output. fi rm -f "$tmp" }