library/roles/tomcat, library/roles/tomcat-multiple-instances: Fix other ansible 2 incompatibilities.

This commit is contained in:
Andrea Dell'Amico 2016-03-02 15:19:25 +01:00
parent 67ea1e71c3
commit 7413e6398a
3 changed files with 9 additions and 9 deletions

View File

@ -1,28 +1,28 @@
---
- name: tomcat restart instances with changed configs
service: name=tomcat-instance-'{{ item.item.http_port }}' state=restarted sleep=20
service: name='tomcat-instance-{{ item.item.http_port }}' state=restarted sleep=20
with_items: restart_needed.results
when: item.changed
ignore_errors: True
- name: tomcat restart instances with changed jmx config
service: name=tomcat-instance-'{{ item.item.http_port }}' state=restarted sleep=20
service: name='tomcat-instance-{{ item.item.http_port }}' state=restarted sleep=20
with_items: jmx_restart_needed.results
when: item.changed
ignore_errors: True
- name: tomcat instances restart
service: name=tomcat-instance-'{{ item.http_port }}' state=restarted sleep=20
service: name='tomcat-instance-{{ item.http_port }}' state=restarted sleep=20
with_items: tomcat_m_instances
ignore_errors: True
- name: enable tomcat instances
service: name=tomcat-instance-'{{ item.http_port }}' state=started enabled=yes sleep=20
service: name='tomcat-instance-{{ item.http_port }}' state=started enabled=yes sleep=20
with_items: tomcat_m_instances
ignore_errors: True
- name: disable tomcat instances
service: name=tomcat-instance-'{{ item.http_port }}' state=stopped enabled=no sleep=20
service: name='tomcat-instance-{{ item.http_port }}' state=stopped enabled=no sleep=20
with_items: tomcat_m_instances
ignore_errors: True

View File

@ -3,7 +3,7 @@
# Note: the library role 'tomcat' is a dependency
#
- name: disable the tomcat main instance
service: name=tomcat'{{ tomcat_version }}' state=stopped enabled=no
service: name='tomcat{{ tomcat_version }}' state=stopped enabled=no
when: not tomcat_service_enabled
tags: [ 'tomcat', 'tomcat_instances' ]

View File

@ -1,12 +1,12 @@
---
- name: tomcat restart
service: name=tomcat'{{ tomcat_version }}' state=restarted sleep=20
service: name='tomcat{{ tomcat_version }}' state=restarted sleep=20
when: tomcat_service_enabled
- name: enable tomcat
service: name=tomcat'{{ tomcat_version }}' state=started enabled=yes
service: name='tomcat{{ tomcat_version }}' state=started enabled=yes
when: tomcat_service_enabled
- name: disable tomcat
service: name=tomcat'{{ tomcat_version }}' state=started enabled=no
service: name='tomcat{{ tomcat_version }}' state=started enabled=no
when: not tomcat_service_enabled