From 0df343a9e0190b1c153b877dd63e21d9fcc3c5f8 Mon Sep 17 00:00:00 2001 From: kelin Date: Fri, 16 Jan 2026 18:25:50 -0500 Subject: [PATCH] Add 'your-username' to placeholder checks --- scripts/setup-homelab.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/setup-homelab.sh b/scripts/setup-homelab.sh index 3ee2b01..d44be81 100755 --- a/scripts/setup-homelab.sh +++ b/scripts/setup-homelab.sh @@ -679,7 +679,7 @@ show_final_summary() { is_placeholder() { local value="$1" case "$value" in - "your-generated-key"|"your-jwt-secret-here"|"generate-with-openssl-rand-hex-64"|"YourStrongPassword123!"|"your-email@example.com"|"your-subdomain.duckdns.org"|"192.168.x.x"|"kelin-casa"|"41ef7faa-fc93-41d2-a32f-340fd2b75b2f"|"admin"|"postgres"|"") + "your-generated-key"|"your-jwt-secret-here"|"generate-with-openssl-rand-hex-64"|"YourStrongPassword123!"|"your-email@example.com"|"your-subdomain.duckdns.org"|"192.168.x.x"|"kelin-casa"|"41ef7faa-fc93-41d2-a32f-340fd2b75b2f"|"admin"|"postgres"|"your-username"|"") return 0 # true, it's a placeholder ;; *)