You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/setup_wildfly_server/handlers/main.yml

14 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 }}'