From cc10698ecb621b18d7898e34814e7bd35af50478 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Thu, 11 May 2017 17:04:36 +0200 Subject: [PATCH] library/roles/tomcat-multiple-instances/tasks/main.yml: Restart all the instances when a default has been changed. The old trick did not work correctly. --- tomcat-multiple-instances/tasks/main.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tomcat-multiple-instances/tasks/main.yml b/tomcat-multiple-instances/tasks/main.yml index fd3437f7..b469515a 100644 --- a/tomcat-multiple-instances/tasks/main.yml +++ b/tomcat-multiple-instances/tasks/main.yml @@ -105,9 +105,7 @@ - name: Install the tomcat instances default file template: src=tomcat-default.j2 dest=/etc/default/tomcat-instance-{{ item.http_port }} mode=0640 owner=root group={{ item.user }} with_items: '{{ tomcat_m_instances }}' - register: restart_needed - notify: - - tomcat restart instances with changed configs + notify: tomcat instances restart tags: [ 'tomcat', 'tomcat_instances', 'tomcat_conf', 'tomcat_default', 'jdk' ] - name: Install a custom context.xml file