This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
evolix
/
ansible-roles
Watch
14
Star
2
Fork
1
Code
Issues
53
Pull Requests
12
Releases
31
Wiki
Activity
Browse Source
tomcat: root directory owner/group are configurable
pull/114/head
Jérémy Lecour
4 months ago
committed by
Jérémy Lecour
parent
7413a242a8
commit
d0622c6b20
3 changed files
with
7 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-0
CHANGELOG.md
+3
-0
tomcat/defaults/main.yml
+2
-2
tomcat/tasks/packages.yml
+ 2
- 0
CHANGELOG.md
View File
@ -12,6 +12,8 @@ The **patch** part changes incrementally at each release.
### Added
* tomcat: root directory owner/group are configurable
### Changed
### Fixed
+ 3
- 0
tomcat/defaults/main.yml
View File
@ -1,2 +1,5 @@
---
tomcat_instance_root
:
'/srv/tomcat'
tomcat_root_dir_owner
:
root
tomcat_root_dir_group
:
root
+ 2
- 2
tomcat/tasks/packages.yml
View File
@ -33,8 +33,8 @@
file:
path
:
"{{ tomcat_instance_root }}"
state
:
directory
owner
:
'root
'
group
:
'root
'
owner
:
"{{ tomcat_root_dir_owner | default('root') }}
"
group
:
"{{ tomcat_root_dir_group | default('root') }}
"
mode
:
"0755"
-
name
:
Copy systemd unit
Write
Preview
Loading…
Cancel
Save