gcube-oauth: Fix the install task.

This commit is contained in:
Andrea Dell'Amico 2017-09-14 18:33:51 +02:00
parent da6a90513a
commit 6b4f08e912
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@
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 }}
- 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 }}
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
notify: Restart smartgears
become: True