[fix] role:postgresql-for-hedgedoc:apt update und pg options

This commit is contained in:
roydfalk 2024-03-20 00:11:32 +01:00
parent f392a17f5b
commit 9c03561b1a

View file

@ -3,6 +3,7 @@
"name": "packages", "name": "packages",
"become": true, "become": true,
"ansible.builtin.apt": { "ansible.builtin.apt": {
"update_cache": true,
"pkg": [ "pkg": [
"acl", "acl",
"python3-psycopg2" "python3-psycopg2"
@ -17,6 +18,9 @@
"state": "present", "state": "present",
"name": "{{var_postgresql_for_hedgedoc_username}}", "name": "{{var_postgresql_for_hedgedoc_username}}",
"password": "{{var_postgresql_for_hedgedoc_password}}" "password": "{{var_postgresql_for_hedgedoc_password}}"
},
"environment": {
"PGOPTIONS": "-c password_encryption=scram-sha-256"
} }
}, },
{ {