This commit is contained in:
soraefir
2026-05-08 00:29:12 +02:00
parent 94fdfa2b33
commit 868d2ce116
2 changed files with 2 additions and 3 deletions

View File

@@ -62,7 +62,6 @@ in {
if [ -f "${config.sops.secrets."${lib.toUpper name}".path}" ]; then
PASS=$(grep "^DB_PASSWORD=" "${config.sops.secrets."${lib.toUpper name}".path}" | cut -d'=' -f2-)
echo $PASS
if $PSQL -tAc "ALTER USER ${name}_user WITH PASSWORD '$PASS';" ; then
echo " Successfully set password for ${name}_user"
else