Release 10.2.0 #114

Manually merged
jlecour merged 103 commits from unstable into stable 2020-09-17 14:14:16 +02:00
3 changed files with 7 additions and 2 deletions
Showing only changes of commit d0622c6b20 - Show all commits

View file

@ -12,6 +12,8 @@ The **patch** part changes incrementally at each release.
### Added ### Added
* tomcat: root directory owner/group are configurable
### Changed ### Changed
### Fixed ### Fixed

View file

@ -1,2 +1,5 @@
--- ---
tomcat_instance_root: '/srv/tomcat' tomcat_instance_root: '/srv/tomcat'
tomcat_root_dir_owner: root
tomcat_root_dir_group: root

View file

@ -33,8 +33,8 @@
file: file:
path: "{{ tomcat_instance_root }}" path: "{{ tomcat_instance_root }}"
state: directory state: directory
owner: 'root' owner: "{{ tomcat_root_dir_owner | default('root') }}"
group: 'root' group: "{{ tomcat_root_dir_group | default('root') }}"
mode: "0755" mode: "0755"
- name: Copy systemd unit - name: Copy systemd unit