2018-01-23 10:09:21 +01:00
|
|
|
---
|
|
|
|
- block:
|
|
|
|
- name: Remove the old cmems-importer plugin
|
2018-01-23 18:35:01 +01:00
|
|
|
shell: rm -f {{ smartgears_instance_path }}/webapps/{{ smart_executor_name }}/WEB-INF/lib/{{ cmems_importer_se_plugin_name }}-*-{{ cmems_importer_se_plugin_classifier }}.{{ cmems_importer_se_plugin_extension }}
|
|
|
|
notify: Restart smartgears
|
2018-01-23 10:09:21 +01:00
|
|
|
|
2018-01-23 18:35:01 +01:00
|
|
|
become: True
|
|
|
|
become_user: '{{ smartgears_user }}'
|
|
|
|
when: not cmems_importer_se_plugin_install
|
|
|
|
tags: [ 'smartgears', 'cmems_importer_se', 'tomcat' ]
|
|
|
|
|
|
|
|
|
|
|
|
- block:
|
|
|
|
- name: Download the cmems-importer plugin
|
|
|
|
maven_artifact: artifact_id={{ cmems_importer_se_plugin_name }} version={{ cmems_importer_se_plugin_version | default('latest') }} group_id={{ cmems_importer_se_plugin_group_id }} extension={{ cmems_importer_se_plugin_extension }} repository_url={{ smartgears_global_base_url }} classifier={{ cmems_importer_se_plugin_classifier }} dest={{ smartgears_downloads_dir }}/{{ cmems_importer_se_plugin_file }}
|
|
|
|
register: cmems_importer_download
|
|
|
|
|
|
|
|
- name: Remove the old cmems-importer plugin
|
|
|
|
shell: rm -f {{ smartgears_instance_path }}/webapps/{{ smart_executor_name }}/WEB-INF/lib/{{ cmems_importer_se_plugin_name }}-*-{{ cmems_importer_se_plugin_classifier }}.{{ cmems_importer_se_plugin_extension }}
|
|
|
|
when: ( cmems_importer_download | changed )
|
|
|
|
notify: Restart smartgears
|
|
|
|
|
|
|
|
- name: Copy the cmems-importer plugin on the correct place
|
|
|
|
copy: src={{ smartgears_downloads_dir }}/{{ cmems_importer_se_plugin_file }} dest={{ smartgears_instance_path }}/webapps/{{ smart_executor_name }}/WEB-INF/lib/{{ cmems_importer_se_plugin_file }} remote_src=yes force=yes
|
|
|
|
when: ( cmems_importer_download | changed )
|
2018-01-23 10:09:21 +01:00
|
|
|
notify: Restart smartgears
|
|
|
|
|
|
|
|
- name: Install the nco package
|
|
|
|
become_user: root
|
|
|
|
apt: pkg=nco state=present update_cache=yes cache_valid_time=1800
|
|
|
|
|
|
|
|
become: True
|
|
|
|
become_user: '{{ smartgears_user }}'
|
|
|
|
when: cmems_importer_se_plugin_install
|
|
|
|
tags: [ 'smartgears', 'cmems_importer_se', 'tomcat' ]
|