ansible-roles/smartgears/gcat/tasks/main.yml

37 lines
1.5 KiB
YAML
Raw Normal View History

---
- block:
- name: Remove the old catalogue ws files
file: path={{ item }} state=absent
with_items:
- '{{ smartgears_instance_path }}/webapps/{{ gcat_name }}'
- '{{ smartgears_instance_path }}/webapps/{{ gcat_name }}.{{ gcat_extension }}'
notify: Restart smartgears
become: True
become_user: '{{ d4science_user }}'
when: not gcat_install
tags: [ 'smartgears', 'gcat', 'tomcat' ]
- block:
- name: Get the catalogue-ws
2018-12-05 16:05:19 +01:00
maven_artifact: artifact_id={{ gcat_name }} version={{ gcat_version | default(omit) }} group_id={{ gcat_group_id }} extension={{ gcat_extension | default('war') }} repository_url={{ smartgears_global_base_url }} dest={{ smartgears_downloads_dir }}/{{ gcat_file }} verify_checksum=always
register: gcat_download
- name: Remove the old catalogue ws files
file: path={{ smartgears_instance_path }}/webapps/{{ gcat_name }} state=absent
when: gcat_download is changed
- name: Install the gcat configuration
template: src=config.properties.j2 dest={{ smartgears_instance_path }}/webapps/{{ gcat_name }}/WEB-INF/classes/config.properties mode=0440
notify: Restart smartgears
- name: Copy the catalogue ws war into the tomcat webapps directory
copy: src={{ smartgears_downloads_dir }}/{{ gcat_file }} dest={{ smartgears_instance_path }}/webapps/{{ gcat_name }}.{{ gcat_extension }} remote_src=yes force=yes
notify: Restart smartgears
become: True
become_user: '{{ d4science_user }}'
when: gcat_install
tags: [ 'smartgears', 'gcat', 'tomcat' ]