Skip to content

Commit 495eb6b

Browse files
MrMegaNovatsoulabailpulse-mindLaurent Lavaud
authored
Development (#552)
* add PG14 support : scram * add PG14 support : scram * ajout PG15 * correction coquille * tests Ubuntu22 et Debian11 PG14/PG15 * tests paramètres PG14-PG15 * exemple molecule * Add Ubuntu 22.04, update fedora & deprecate old versions (#543) * Deprecated key gpg warning in Ubuntu 22.04 * Added Ubuntu 22.04 into the list of distribution * Migrate to fedora37 --------- Co-authored-by: fravetier <[email protected]> Co-authored-by: Pulse-Mind <[email protected]> * update README.md with newer versions & fix molecule tests * Fix Molecule CI workflow since docker plugin has moved. * molecule - allow rw on cgroup * CI - use /tmp directory * mk lint README.md & run playbook as root * fixing CI permissions issue * fix scram-sha-256 password encryption for pg >= 14 * Update version to v1.14.2 --------- Co-authored-by: Thierry.Soulabail <[email protected]> Co-authored-by: fravetier <[email protected]> Co-authored-by: Pulse-Mind <[email protected]> Co-authored-by: Laurent Lavaud <[email protected]>
1 parent 2697f93 commit 495eb6b

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ postgresql_client_connection_check_interval: 0 # (>= 14)
148148
# - Authentication -
149149

150150
postgresql_authentication_timeout: 60s
151-
postgresql_password_encryption: "{{ 'md5' if postgresql_version is version_compare('10', '>=') else 'on' }}" # (>=10.0 set to scram-sha-256 for best security)
151+
postgresql_password_encryption: "{{ 'scram-sha-256' if postgresql_version is version_compare('14', '>=') else 'md5' }}" # (>=14.0 set to scram-sha-256 for best security)
152152
postgresql_db_user_namespace: off
153153

154154
# GSSAPI using Kerberos

vars/postgresql_14.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
---
22
# PostgreSQL vars for v14
33
postgresql_client_connection_check_interval: 60
4-
postgresql_password_encryption: md5

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.14.0
1+
v1.14.2

0 commit comments

Comments
 (0)