File tree 2 files changed +15
-3
lines changed
2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 13
13
- name : Check if psql_version is psql_17
14
14
set_fact :
15
15
is_psql_17 : " {{ psql_version in ['psql_17'] }}"
16
+
17
+ - name : Check if psql_version is psql_15
18
+ set_fact :
19
+ is_psql_15 : " {{ psql_version in ['psql_15'] }}"
16
20
17
21
- name : Remove specified extensions from postgresql.conf if orioledb-17 or 17 build
18
22
ansible.builtin.command :
30
34
when : is_psql_oriole or is_psql_17 and stage2_nix
31
35
become : yes
32
36
37
+ - name : Remove pgjwt from supautils.conf if 15 build
38
+ ansible.builtin.command :
39
+ cmd : >
40
+ sed -i 's/ pgjwt,//g'
41
+ /etc/postgresql-custom/supautils.conf
42
+ when : is_psql_15 and stage2_nix
43
+ become : yes
44
+
33
45
- name : Remove db_user_namespace from postgresql.conf if orioledb-17 or 17 build
34
46
ansible.builtin.command :
35
47
cmd : >
Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ postgres_major:
9
9
10
10
# Full version strings for each major version
11
11
postgres_release :
12
- postgresorioledb-17 : " 17.0.1.078-orioledb"
13
- postgres17 : " 17.4.1.028"
14
- postgres15 : " 15.8.1.085"
12
+ postgresorioledb-17 : " 17.0.1.078-orioledb-pgjwt15-1 "
13
+ postgres17 : " 17.4.1.028-pgjwt15-1 "
14
+ postgres15 : " 15.8.1.085-pgjwt15-1 "
15
15
16
16
# Non Postgres Extensions
17
17
pgbouncer_release : " 1.19.0"
You can’t perform that action at this time.
0 commit comments