2016-06-13 16:24:30 +02:00
|
|
|
---
|
2016-12-05 17:34:11 +01:00
|
|
|
- name: Remove the old social indexer plugin
|
2016-12-05 17:22:28 +01:00
|
|
|
shell: rm -f {{ smartgears_instance_path }}/webapps/{{ smart_executor_name }}/WEB-INF/lib/social-data-indexer-se-plugin-*-jar-with-dependencies.jar
|
|
|
|
when: social_data_indexer_se_plugin_upgrade
|
|
|
|
tags: [ 'smartgears', 'social_data_indexer_se', 'tomcat' ]
|
|
|
|
|
|
|
|
|
2016-06-24 15:28:21 +02:00
|
|
|
- name: Get the social indexer plugin and install it inside the smart executor
|
2016-06-13 16:24:30 +02:00
|
|
|
become: True
|
|
|
|
become_user: '{{ smartgears_user }}'
|
|
|
|
get_url: url={{ social_data_indexer_se_plugin_url }} dest={{ smartgears_instance_path }}/webapps/{{ smart_executor_name }}/WEB-INF/lib
|
|
|
|
when: social_data_indexer_se_plugin_install
|
|
|
|
notify: Restart smartgears
|
|
|
|
tags: [ 'smartgears', 'social_data_indexer_se', 'tomcat' ]
|
|
|
|
|