10 lines
395 B
YAML
10 lines
395 B
YAML
---
|
|
- name: Get the couchdb cache se plugin and install it inside the smart executor
|
|
become: True
|
|
become_user: '{{ smartgears_user }}'
|
|
get_url: url={{ couchdb_cache_se_plugin_url }} dest={{ smartgears_instance_path }}/webapps/{{ smart_executor_name }}/WEB-INF/lib
|
|
when: couchdb_cache_se_plugin_install
|
|
notify: Restart smartgears
|
|
tags: [ 'smartgears', 'couchdb_cache_se', 'tomcat' ]
|
|
|