Release 10.0.0 #100

Manually merged
jlecour merged 321 commits from unstable into stable 2020-05-13 11:25:49 +02:00
4 changed files with 26 additions and 0 deletions
Showing only changes of commit 9d5a272472 - Show all commits

View file

@ -10,3 +10,6 @@ postgresql_effective_cache_size: "{{ (ansible_memtotal_mb * 0.5) | int }}MB"
# PostgreSQL version
postgresql_version: '9.6'
#Set locales
locales_default: fr_FR.UTF-8

View file

@ -16,3 +16,6 @@
- name: Restart minifirewall
command: /etc/init.d/minifirewall restart
- name: reconfigure locales
command: dpkg-reconfigure -f noninteractive locales

View file

@ -0,0 +1,19 @@
---
- include_role:
name: remount-usr
- name: select locales to be generated
locale_gen:
name: "{{ item }}"
state: present
with_items:
- "fr_FR.UTF-8"
become: yes
notify: reconfigure locales
- name: set default locale
lineinfile:
dest: "/etc/default/locale"
regexp: "^LANG="
line: "LANG={{ locales_default }}"
notify: reconfigure locales

View file

@ -1,4 +1,5 @@
---
- include: locales.yml
- include: packages_jessie.yml
when: ansible_distribution_release == "jessie"