forked from ISTI-ansible-roles/ansible-roles
catalogue_ws: Convert to maven_artifact properly.
This commit is contained in:
parent
604733465e
commit
0e94d276ec
|
@ -1,6 +1,5 @@
|
||||||
---
|
---
|
||||||
catalogue_ws_install: False
|
catalogue_ws_install: False
|
||||||
catalogue_ws_upgrade: False
|
|
||||||
catalogue_ws_version: latest
|
catalogue_ws_version: latest
|
||||||
catalogue_ws_name: catalogue-ws
|
catalogue_ws_name: catalogue-ws
|
||||||
|
|
||||||
|
|
|
@ -1,18 +1,22 @@
|
||||||
---
|
---
|
||||||
- block:
|
- block:
|
||||||
- name: Remove the old catalogue ws files
|
- name: Remove the old catalogue ws files
|
||||||
file: path={{ smartgears_instance_path }}/webapps/{{ catalogue_ws_name }} state=absent
|
file: path={{ item }} state=absent
|
||||||
when: catalogue_ws_upgrade
|
with_items:
|
||||||
|
- '{{ smartgears_instance_path }}/webapps/{{ catalogue_ws_name }}'
|
||||||
|
- '{{ smartgears_instance_path }}/webapps/{{ catalogue_ws_name }}.{{ catalogue_ws_extension }}'
|
||||||
|
|
||||||
# NOTE: Install as the smartgears user so we do not mess with the permissions
|
become: True
|
||||||
|
become_user: '{{ d4science_user }}'
|
||||||
|
when: not catalogue_ws_install
|
||||||
|
tags: [ 'smartgears', 'catalogue_ws', 'tomcat' ]
|
||||||
|
|
||||||
|
- block:
|
||||||
- name: Get the catalogue-ws
|
- name: Get the catalogue-ws
|
||||||
maven_artifact: artifact_id={{ catalogue_ws_name }} version={{ catalogue_ws_version | default(omit) }} group_id={{ catalogue_ws_group_id }} extension={{ catalogue_ws_extension | default('war') }} repository_url={{ smartgears_global_base_url }} dest={{ smartgears_user_home }}/{{ catalogue_ws_file }}
|
maven_artifact: artifact_id={{ catalogue_ws_name }} version={{ catalogue_ws_version | default(omit) }} group_id={{ catalogue_ws_group_id }} extension={{ catalogue_ws_extension | default('war') }} repository_url={{ smartgears_global_base_url }} dest={{ smartgears_downloads_dir }}/{{ catalogue_ws_file }}
|
||||||
|
|
||||||
- name: Create the catalogue ws working directory
|
- name: Copy the catalogue ws war into the tomcat webapps directory
|
||||||
file: path={{ smartgears_instance_path }}/webapps/{{ catalogue_ws_name }} state=directory owner={{ smartgears_user }} group={{ smartgears_user }}
|
copy: src={{ smartgears_downloads_dir }}/{{ catalogue_ws_file }} dest={{ smartgears_instance_path }}/webapps/{{ catalogue_ws_name }}.{{ catalogue_ws_extension }} remote_src=yes force=yes
|
||||||
|
|
||||||
- name: Unarchive the catalogue ws war
|
|
||||||
unarchive: copy=no src={{ smartgears_user_home }}/{{ catalogue_ws_file }} dest={{ smartgears_instance_path }}/webapps/{{ catalogue_ws_name }} creates={{ smartgears_instance_path }}/webapps/{{ catalogue_ws_name }}/WEB-INF/lib
|
|
||||||
notify: Restart smartgears
|
notify: Restart smartgears
|
||||||
|
|
||||||
become: True
|
become: True
|
||||||
|
@ -20,11 +24,3 @@
|
||||||
when: catalogue_ws_install
|
when: catalogue_ws_install
|
||||||
tags: [ 'smartgears', 'catalogue_ws', 'tomcat' ]
|
tags: [ 'smartgears', 'catalogue_ws', 'tomcat' ]
|
||||||
|
|
||||||
- block:
|
|
||||||
- name: Remove the old catalogue ws files
|
|
||||||
file: path={{ smartgears_instance_path }}/webapps/{{ catalogue_ws_name }} state=absent
|
|
||||||
|
|
||||||
become: True
|
|
||||||
become_user: '{{ d4science_user }}'
|
|
||||||
when: not catalogue_ws_install
|
|
||||||
tags: [ 'smartgears', 'catalogue_ws', 'tomcat' ]
|
|
||||||
|
|
Loading…
Reference in New Issue