Release 10.0.0 #100

Manually merged
jlecour merged 321 commits from unstable into stable 2020-05-13 11:25:49 +02:00
3 changed files with 12 additions and 1 deletions
Showing only changes of commit 1bf271a4f4 - Show all commits

View file

@ -11,5 +11,8 @@ postgresql_effective_cache_size: "{{ (ansible_memtotal_mb * 0.5) | int }}MB"
# PostgreSQL version
postgresql_version: '9.6'
#Set locales
# Set locales
locales_default: fr_FR.UTF-8
# PostGIS
postgresql_install_postgis: false

View file

@ -17,3 +17,6 @@
- include: munin.yml
- include: logrotate.yml
- include: postgis.yml
when: postgresql_install_postgis == "true"

View file

@ -0,0 +1,5 @@
---
- name: Install PostGIS extention
apt:
name: postgis
state: present