tomcat-instance: fix .profile owner and group

This commit is contained in:
Victor LABORIE 2017-04-04 16:21:34 +02:00
parent 04314d719c
commit 6d017e8470
1 changed files with 2 additions and 0 deletions

View File

@ -7,6 +7,8 @@
lineinfile:
dest: "{{ tomcat_instance_root }}/{{ tomcat_instance_name }}/.profile"
state: present
owner: "{{ tomcat_instance_name }}"
group: "{{ tomcat_instance_name }}"
mode: "0640"
create: yes
line: 'export XDG_RUNTIME_DIR=/run/user/$UID'