From ea617171742cf573c2154239ca4d2ff171323f61 Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Fri, 19 Dec 2025 23:39:27 -0600 Subject: [PATCH] fix --- clusters/cl01tl/helm/qbittorrent/templates/config-map.yaml | 2 +- clusters/cl01tl/helm/vault/templates/config-map.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/clusters/cl01tl/helm/qbittorrent/templates/config-map.yaml b/clusters/cl01tl/helm/qbittorrent/templates/config-map.yaml index ecc32c64c..6c0fe9fca 100644 --- a/clusters/cl01tl/helm/qbittorrent/templates/config-map.yaml +++ b/clusters/cl01tl/helm/qbittorrent/templates/config-map.yaml @@ -14,7 +14,7 @@ data: SUCCESS=false for i in $(seq 1 "$MAX_RETRIES"); do - if apk update --short &> /dev/null; then + if apk update --short > /dev/null 2>&1; then echo ">> Attempt $i: Repositories are reachable" SUCCESS=true break diff --git a/clusters/cl01tl/helm/vault/templates/config-map.yaml b/clusters/cl01tl/helm/vault/templates/config-map.yaml index 8059b09f8..6fc8d2b01 100644 --- a/clusters/cl01tl/helm/vault/templates/config-map.yaml +++ b/clusters/cl01tl/helm/vault/templates/config-map.yaml @@ -13,7 +13,7 @@ data: SUCCESS=false for i in $(seq 1 "$MAX_RETRIES"); do - if apk update --short &> /dev/null; then + if apk update --short > /dev/null 2>&1; then echo ">> Attempt $i: Repositories are reachable"; SUCCESS=true; break;