From 4859629c1c84367dde304e6b0e57ad691d61b67c Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Mon, 25 Sep 2017 18:17:06 +0200 Subject: [PATCH] gcube-oauth: Fix the upgrade scenario. --- smartgears/gcube-oauth/tasks/main.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/smartgears/gcube-oauth/tasks/main.yml b/smartgears/gcube-oauth/tasks/main.yml index 6d21b33a..94b4907c 100644 --- a/smartgears/gcube-oauth/tasks/main.yml +++ b/smartgears/gcube-oauth/tasks/main.yml @@ -5,6 +5,7 @@ with_items: - '{{ smartgears_instance_path }}/webapps/gcube-{{ gcube_oauth_name }}' - '{{ smartgears_instance_path }}/webapps/gcube-{{ gcube_oauth_name }}.{{ gcube_oauth_extension }}' + notify: Restart smartgears become: True become_user: '{{ d4science_user }}' @@ -14,6 +15,12 @@ - block: - name: Get the gcube-oauth war maven_artifact: artifact_id={{ gcube_oauth_name }} version={{ gcube_oauth_version | default(omit) }} group_id={{ gcube_oauth_group_id }} extension={{ gcube_oauth_extension | default('war') }} repository_url={{ smartgears_global_base_url }} dest={{ smartgears_downloads_dir }}/{{ gcube_oauth_file }} + register: gcube_oauth_download + + - name: Remove the old gcube oauth files + file: path={{ smartgears_instance_path }}/webapps/gcube-{{ gcube_oauth_name }} state=absent + when: ( gcube_oauth_download | changed ) + notify: Restart smartgears - name: Copy the gcube_oauth war into the webapps directory copy: src={{ smartgears_downloads_dir }}/{{ gcube_oauth_file }} dest={{ smartgears_instance_path }}/webapps/gcube-{{ gcube_oauth_name }}.{{ gcube_oauth_extension }} remote_src=yes force=yes