ansible/test/integration/targets/setup_wildfly_server/handlers/main.yml
Andrey Klychkov 2a07123fdd jboss module: add check mode support and integration tests (#58959)
* git war file and wildfly archive from S3
* create setup_wildfly_server role for integration tests
2019-07-15 12:17:08 -04:00

13 lines
242 B
YAML

- name: Stop wildfly (jboss)
systemd:
name: wildfly
state: stopped
ignore_errors: yes
- name: Remove files
file:
path: '{{ item }}'
state: absent
loop:
- '{{ wf_service_file_path }}'
- '{{ default_deploy_root }}'