Skip to content

Commit fed90a0

Browse files
committed
chore: cleanup names
1 parent 25e1b3b commit fed90a0

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

ansible/tasks/stage2-setup-postgres.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66

77
- name: Check psql_version and modify supautils.conf and postgresql.conf if necessary
88
block:
9-
- name: Check if psql_version is psql_oriole-16
9+
- name: Check if psql_version is psql_orioledb-16
1010
set_fact:
11-
is_psql_oriole_16: "{{ psql_version == 'psql_oriole-16' }}"
11+
is_psql_oriole_16: "{{ psql_version == 'psql_orioledb-16' }}"
1212

1313
- name: Remove specified extensions from postgresql.conf if oriole-16 build
1414
ansible.builtin.command:
1515
cmd: >
1616
sed -i 's/ timescaledb,//g'
1717
/etc/postgresql/postgresql.conf
18-
when: is_psql_oriole_16 and stage2_nix
18+
when: is_psql_orioledb_16 and stage2_nix
1919
become: yes
2020

2121
- name: Remove specified extensions from supautils.conf if oriole-16 build
@@ -222,9 +222,9 @@
222222

223223
- name: Check psql_version and run postgis linking if not oriole-16
224224
block:
225-
- name: Check if psql_version is psql_oriole-16
225+
- name: Check if psql_version is psql_orioledb-16
226226
set_fact:
227-
is_psql_oriole_16: "{{ psql_version == 'psql_oriole-16' }}"
227+
is_psql_oriole_16: "{{ psql_version == 'psql_orioledb-16' }}"
228228

229229
- name: Recursively create symbolic links and set permissions for the contrib/postgis-* dir
230230
shell: >

ansible/tasks/test-image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@
6565

6666
- name: Check psql_version and modify migrations if orioe-16
6767
block:
68-
- name: Check if psql_version is psql_oriole-16
68+
- name: Check if psql_version is psql_orioledb-16
6969
set_fact:
70-
is_psql_oriole_16: "{{ psql_version == 'psql_oriole-16' }}"
70+
is_psql_oriole_16: "{{ psql_version == 'psql_orioledb-16' }}"
7171

7272
- name: Remove specified extensions from SQL file
7373
ansible.builtin.command:

ansible/vars.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ postgres_major:
1212
postgres_release:
1313
#postgres15: "15.8.1.003-staging-5"
1414
#postgres16: "16.3.1.000-staging-5"
15-
postgresoriole-16: "oriole-16.3.1.000-staging-8"
15+
postgresoriole-16: "oriole-16.3.1.000-staging-9"
1616

1717
# Non Postgres Extensions
1818
pgbouncer_release: "1.19.0"

0 commit comments

Comments
 (0)