Skip to content

Commit

Permalink
fix: maybe broke pgsodium with too many spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
samrose committed Oct 18, 2024
1 parent a67d8e1 commit 67382a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ansible/tasks/stage2-setup-postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@

- name: Remove 'timescaledb,' from postgresql.conf if oriole-16 build
ansible.builtin.command:
cmd: sed -i 's/timescaledb,//g' /etc/postgresql/postgresql.conf
cmd: sed -i 's/ timescaledb,//g' /etc/postgresql/postgresql.conf
when: is_psql_oriole_16 and stage2_nix
become: yes
- name: Remove 'timescaledb,' from supautils.conf
ansible.builtin.command:
cmd: sed -i 's/timescaledb,//g' /etc/postgresql-custom/supautils.conf
cmd: sed -i 's/ timescaledb,//g' /etc/postgresql-custom/supautils.conf
when: is_psql_oriole_16 and stage2_nix
become: yes

Expand Down
2 changes: 1 addition & 1 deletion ansible/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ postgres_major:
postgres_release:
#postgres15: "15.8.1.003-staging-5"
#postgres16: "16.3.1.000-staging-5"
postgresoriole-16: "oriole-16.3.1.000-staging-5"
postgresoriole-16: "oriole-16.3.1.000-staging-6"

# Non Postgres Extensions
pgbouncer_release: "1.19.0"
Expand Down

0 comments on commit 67382a6

Please sign in to comment.