ansible-roles/postgresql/tasks/postgis.yml
Jérémy Lecour ee21973371 Use FQCN
Fully Qualified Collection Name
2023-03-20 23:33:19 +01:00

9 lines
233 B
YAML

---
- name: Install PostGIS extention
ansible.builtin.apt:
name:
- postgis
- "postgresql-{{ postgresql_version }}-postgis-2.5"
- "postgresql-{{ postgresql_version }}-postgis-2.5-scripts"
update_cache: yes