Release 10.0.0 #100

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

View file

@ -51,6 +51,7 @@ The **patch** part changes incrementally at each release.
* evolinux-base: use "evolinux_internal_group" for SSH authentication
* evomaintenance: Turn on API by default (instead of DB)
* evomaintenance: upstream version 0.6.0
* evomaintenance: install PG dependencies only when needed
* lxc-php: refactor tasks for better maintainability
* lxc: rely on lxc_container module instead of command module
* lxc: remove useless loop in apt execution

View file

@ -3,13 +3,21 @@
- name: Dependencies are installed
apt:
name:
- postgresql-client
- sudo
- curl
state: present
tags:
- evomaintenance
- name: PG dependencies are installed
apt:
name:
- postgresql-client
state: present
when: evomaintenance_hook_db
tags:
- evomaintenance
- include_role:
name: evolix/remount-usr
tags: