From baf4e046cefe68e06e57527fad12cce850e2ab9a Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Mon, 26 Jun 2017 13:09:43 +0200 Subject: [PATCH] library/roles/smartgears/gcubeapp-setup/tasks/main.yml: Do not assume that the app context is lowercase. --- smartgears/gcubeapp-setup/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smartgears/gcubeapp-setup/tasks/main.yml b/smartgears/gcubeapp-setup/tasks/main.yml index cef23618..d1c3a343 100644 --- a/smartgears/gcubeapp-setup/tasks/main.yml +++ b/smartgears/gcubeapp-setup/tasks/main.yml @@ -1,6 +1,6 @@ --- - name: Install the gcube-app file to make the webapp smartgears compatible - template: src=gcube-app.xml.j2 dest={{ item.0.instance_path }}/webapps/{{ item.1.webapp_name | lower }}/WEB-INF/gcube-app.xml owner={{ item.0.user }} group={{ item.0.user }} + template: src=gcube-app.xml.j2 dest={{ item.0.instance_path }}/webapps/{{ item.1.webapp_name }}/WEB-INF/gcube-app.xml owner={{ item.0.user }} group={{ item.0.user }} with_together: - '{{ tomcat_m_instances }}' - '{{ gcubeapp_webapps | default (omit) }}'