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

35 lines
2.0 KiB
YAML

---
- block:
- name: Remove the old oscar-importer plugin
shell: rm -f {{ smartgears_instance_path }}/webapps/{{ smart_executor_name }}/WEB-INF/lib/{{ oscar_importer_se_plugin_name }}-*-{{ oscar_importer_se_plugin_classifier }}.{{ oscar_importer_se_plugin_extension }}
notify: Restart smartgears
become: True
become_user: '{{ smartgears_user }}'
when: not oscar_importer_se_plugin_install
tags: [ 'smartgears', 'oscar_importer_se', 'tomcat' ]
- block:
- name: Install the oscar-importer plugin inside the smart executor lib directory
maven_artifact: artifact_id={{ oscar_importer_se_plugin_name }} version={{ oscar_importer_se_plugin_version | default(omit) }} group_id={{ oscar_importer_se_plugin_group_id }} extension={{ oscar_importer_se_plugin_extension | default('war') }} repository_url={{ smartgears_global_base_url }} classifier={{ oscar_importer_se_plugin_classifier }} dest={{ smartgears_downloads_dir }}/{{ oscar_importer_se_plugin_file }}
register: oscar_importer_download
- name: Remove the old oscar-importer plugin
shell: rm -f {{ smartgears_instance_path }}/webapps/{{ smart_executor_name }}/WEB-INF/lib/{{ oscar_importer_se_plugin_name }}-*-{{ oscar_importer_se_plugin_classifier }}.{{ oscar_importer_se_plugin_extension }}
when: ( oscar_importer_download | changed )
notify: Restart smartgears
- name: Copy the oscar-importer plugin on the correct place
copy: src={{ smartgears_downloads_dir }}/{{ oscar_importer_se_plugin_file }} dest={{ smartgears_instance_path }}/webapps/{{ smart_executor_name }}/WEB-INF/lib/{{ oscar_importer_se_plugin_file }} remote_src=yes force=yes
when: ( oscar_importer_download | changed )
notify: Restart smartgears
- name: Install the libnetcdfc7 package
become_user: root
apt: pkg=libnetcdfc7 state=present update_cache=yes cache_valid_time=1800
become: True
become_user: '{{ smartgears_user }}'
when: oscar_importer_se_plugin_install
tags: [ 'smartgears', 'oscar_importer_se', 'tomcat' ]