ansible-roles/postgresql/tasks/postgis.yml

9 lines
233 B
YAML
Raw Permalink Normal View History

---
2021-05-13 15:23:05 +02:00
- name: Install PostGIS extention
ansible.builtin.apt:
2020-01-21 15:48:03 +01:00
name:
- postgis
- "postgresql-{{ postgresql_version }}-postgis-2.5"
- "postgresql-{{ postgresql_version }}-postgis-2.5-scripts"
2023-03-19 11:44:53 +01:00
update_cache: yes