From 5fc783da67c764c960bd5846dcb005e96c2ad536 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reinaldo=20D=C3=ADaz=20Lugo?= Date: Wed, 8 Jan 2025 08:14:15 +0100 Subject: [PATCH] update postgresql json to add post install password setup (#1318) --- json/postgresql.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/json/postgresql.json b/json/postgresql.json index c60465c7..6fe236d1 100644 --- a/json/postgresql.json +++ b/json/postgresql.json @@ -30,5 +30,10 @@ "username": null, "password": null }, - "notes": [] + "notes": [ + { + "text": "Set a password after installation for postgres user by running `echo \"ALTER USER postgres with encrypted password 'your_password';\" | sudo -u postgres psql`", + "type": "info" + } + ] } \ No newline at end of file