Skip to content

Commit 67382a6

Browse files
committed
fix: maybe broke pgsodium with too many spaces
1 parent a67d8e1 commit 67382a6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ansible/tasks/stage2-setup-postgres.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212

1313
- name: Remove 'timescaledb,' from postgresql.conf if oriole-16 build
1414
ansible.builtin.command:
15-
cmd: sed -i 's/timescaledb,//g' /etc/postgresql/postgresql.conf
15+
cmd: sed -i 's/ timescaledb,//g' /etc/postgresql/postgresql.conf
1616
when: is_psql_oriole_16 and stage2_nix
1717
become: yes
1818
- name: Remove 'timescaledb,' from supautils.conf
1919
ansible.builtin.command:
20-
cmd: sed -i 's/timescaledb,//g' /etc/postgresql-custom/supautils.conf
20+
cmd: sed -i 's/ timescaledb,//g' /etc/postgresql-custom/supautils.conf
2121
when: is_psql_oriole_16 and stage2_nix
2222
become: yes
2323

ansible/vars.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ postgres_major:
1111
postgres_release:
1212
#postgres15: "15.8.1.003-staging-5"
1313
#postgres16: "16.3.1.000-staging-5"
14-
postgresoriole-16: "oriole-16.3.1.000-staging-5"
14+
postgresoriole-16: "oriole-16.3.1.000-staging-6"
1515

1616
# Non Postgres Extensions
1717
pgbouncer_release: "1.19.0"

0 commit comments

Comments
 (0)