tomcat: root directory owner/group are configurable
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Jérémy Lecour 2020-08-27 17:12:34 +02:00 committed by Jérémy Lecour
parent 7413a242a8
commit d0622c6b20
3 changed files with 7 additions and 2 deletions

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