From ea729161be7b585c433485f5cb9346023fa0875c Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Thu, 11 Jan 2018 18:36:23 +0100 Subject: [PATCH] library/roles/smartgears/grsf_publisher_ws/tasks/main.yml: Fix a typo. --- smartgears/grsf_publisher_ws/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/smartgears/grsf_publisher_ws/tasks/main.yml b/smartgears/grsf_publisher_ws/tasks/main.yml index 23203ff0..ace7bac2 100644 --- a/smartgears/grsf_publisher_ws/tasks/main.yml +++ b/smartgears/grsf_publisher_ws/tasks/main.yml @@ -22,8 +22,8 @@ notify: Restart smartgears when: ( grsf_publisher_download | changed ) - - name: Unarchive the grsf_publisher_ws war - copy: src={{ smartgears_downloads_dir }}/{{ grsf_publisher_ws_file }} dest={{ smartgears_instance_path }}/webapps/{{ grsf_publisher_ws_name }}. {{ grsf_publisher_ws_extension }} remote_src=yes force=yes + - name: Copy the GRSF publisher under the webapps directory + copy: src={{ smartgears_downloads_dir }}/{{ grsf_publisher_ws_file }} dest={{ smartgears_instance_path }}/webapps/{{ grsf_publisher_ws_name }}.{{ grsf_publisher_ws_extension }} remote_src=yes force=yes notify: Restart smartgears become: True