14 lines
525 B
YAML
14 lines
525 B
YAML
---
|
|
- name: install the postgresql GIS packages on deb/ubuntu
|
|
apt: pkg={{ postgres_gis_pkgs }} state={{ psql_pkg_state }} cache_valid_time=3600
|
|
notify: Restart postgresql
|
|
when: ansible_distribution_file_variety == "Debian"
|
|
tags: [ 'postgresql', 'postgres', 'postgis' ]
|
|
|
|
- name: install the postgresql GIS packages on EL
|
|
yum: pkg={{ postgres_el_gis_pkgs }} state={{ psql_pkg_state }}
|
|
notify: Restart postgresql
|
|
when: ansible_distribution_file_variety == "RedHat"
|
|
tags: [ 'postgresql', 'postgres', 'postgis' ]
|
|
|