Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
12 changes: 12 additions & 0 deletions ansible/tasks/setup-system.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,18 @@
dest: '/etc/apt/apt.conf.d/10periodic'
src: 'files/apt_periodic'

- name: Set local ssh policy
ansible.builtin.copy:
content: |
Match Address 127.0.0.1,::1
ForceCommand /bin/false
DisableForwarding yes
PermitTunnel no
dest: /etc/ssh/sshd_config.d/local.conf
mode: '0644'
owner: 'root'
group: 'root'

- name: Install other useful tools
ansible.builtin.apt:
pkg:
Expand Down
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.016-orioledb"
postgres17: "17.6.1.059"
postgres15: "15.14.1.059"
postgresorioledb-17: "17.6.0.017-orioledb"
postgres17: "17.6.1.060"
postgres15: "15.14.1.060"

# Non Postgres Extensions
pgbouncer_release: 1.19.0
Expand Down