Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions ansible/tasks/setup-wal-g.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,11 @@
mode: '0664'
owner: 'postgres'
src: 'files/postgresql_config/conf.d/wal-g.conf'

- name: Create symlink for admin-mgr compatibility
ansible.builtin.file:
src: '/etc/postgresql-custom/conf.d/wal-g.conf'
dest: '/etc/postgresql-custom/wal-g.conf'
state: 'link'
owner: 'postgres'
group: 'postgres'
6 changes: 3 additions & 3 deletions ansible/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ postgres_major:

# Full version strings for each major version
postgres_release:
postgresorioledb-17: "17.6.0.022-orioledb"
postgres17: "17.6.1.065"
postgres15: "15.14.1.065"
postgresorioledb-17: "17.6.0.023-orioledb-wal-g"
postgres17: "17.6.1.066-wal-g"
postgres15: "15.14.1.066-wal-g"

# Non Postgres Extensions
pgbouncer_release: 1.19.0
Expand Down
Loading