forked from ISTI-ansible-roles/ansible-roles
20 lines
988 B
YAML
20 lines
988 B
YAML
|
---
|
||
|
- name: Install the sudoers config that permits the tomcat user to restart the service
|
||
|
template: src=tomcat-sudoers.j2 dest=/etc/sudoers.d/tomcat-d4science owner=root group=root mode=0440
|
||
|
tags: [ 'tomcat', 'd4science', 'sudo' ]
|
||
|
|
||
|
- name: Install the script that allows the tomcat user to start and stop the service without using the full path
|
||
|
template: src={{ item.1 }}.j2 dest={{ item.0.user_home }}/{{ item.1 }} owner={{ item.0.user }} group={{ item.0.user }} mode=0755
|
||
|
with_nested:
|
||
|
- '{{ tomcat_m_instances }}'
|
||
|
- [ 'startContainer.sh', 'stopContainer.sh' ]
|
||
|
tags: [ 'tomcat', 'd4science', 'sudo' ]
|
||
|
|
||
|
- name: Install the README file that explains where the options files are placed and how start/stop the service
|
||
|
template: src={{ item.1 }}.j2 dest={{ item.0.user_home }}/{{ item.1 }} owner={{ item.0.user }} group={{ item.0.user }} mode=0444
|
||
|
with_nested:
|
||
|
- '{{ tomcat_m_instances }}'
|
||
|
- [ 'README-tomcat' ]
|
||
|
tags: [ 'tomcat', 'd4science', 'd4s_readme' ]
|
||
|
|