forked from ISTI-ansible-roles/ansible-roles
10 lines
393 B
YAML
10 lines
393 B
YAML
---
|
|
- name: Get the smart generic worker plugin and install it inside the smart executor
|
|
become: True
|
|
become_user: '{{ smartgears_user }}'
|
|
get_url: url={{ smart_generic_worker_plugin_url }} dest={{ smartgears_instance_path }}/webapps/{{ smart_executor_name }}/WEB-INF/lib
|
|
when: generic_worker_install
|
|
notify: Restart smartgears
|
|
tags: [ 'smartgears', 'generic_worker', 'tomcat' ]
|
|
|