ansible-roles/postgresql/tasks/packages_buster.yml
Ludovic Poujol 1160a5e809
All checks were successful
continuous-integration/drone/push Build is passing
postgresql: correct confitinal on set_fact
2020-12-07 16:43:59 +01:00

17 lines
285 B
YAML

---
- name: "Set variables (Debian 10)"
set_fact:
postgresql_version: '11'
when: postgresql_version == ""
- include: pgdg-repo.yml
when: postgresql_version != '11'
- name: Install postgresql package
apt:
name:
- postgresql
- pgtop
- libdbd-pg-perl