From 945c5a61cab976f1b9827eee65fc4d4d7e3e11f3 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico <adellam@isti.cnr.it> Date: Fri, 29 Sep 2017 18:06:45 +0200 Subject: [PATCH] smartgears: do not stop the service if it's the first installation. --- smartgears/smartgears/tasks/smartgears-app.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/smartgears/smartgears/tasks/smartgears-app.yml b/smartgears/smartgears/tasks/smartgears-app.yml index e3839dd..a432b4f 100644 --- a/smartgears/smartgears/tasks/smartgears-app.yml +++ b/smartgears/smartgears/tasks/smartgears-app.yml @@ -33,11 +33,21 @@ - ( smartgears_download | changed ) tags: [ 'smartgears', 'tomcat' ] +- name: Check if the smartgears stop script exists + become: True + become_user: '{{ smartgears_user }}' + stat: path=/home/{{ smartgears_user }}/stopContainer.sh + when: smartgears_upgrade or ( smartgears_download | changed ) + register: smartgears_stop_script + tags: [ 'smartgears', 'tomcat', 'stop_smartgears_service' ] + - name: Stop the smartgears container before launching the upgrade script become: True become_user: '{{ smartgears_user }}' shell: /home/{{ smartgears_user }}/stopContainer.sh - when: smartgears_upgrade or ( smartgears_download | changed ) + when: + - smartgears_upgrade or ( smartgears_download | changed ) + - smartgears_stop_script.exists tags: [ 'smartgears', 'tomcat', 'stop_smartgears_service' ] - name: Install the additional tomcat default file