From 961181c52f275a6befee26f486a297ab9539ce97 Mon Sep 17 00:00:00 2001 From: Shanshan Date: Tue, 21 Oct 2025 15:05:43 +0800 Subject: [PATCH] feat: Quote admin password in bootstrap config The admin password in the bootstrap configuration is now enclosed in single quotes. This prevents YAML parsing errors when the password contains special characters. --- postgres-appliance/scripts/configure_spilo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres-appliance/scripts/configure_spilo.py b/postgres-appliance/scripts/configure_spilo.py index 783020f2c..176b934eb 100755 --- a/postgres-appliance/scripts/configure_spilo.py +++ b/postgres-appliance/scripts/configure_spilo.py @@ -260,7 +260,7 @@ def deep_update(a, b): {{#USE_ADMIN}} users: {{PGUSER_ADMIN}}: - password: {{PGPASSWORD_ADMIN}} + password: '{{PGPASSWORD_ADMIN}}' options: - createrole - createdb