summaryrefslogtreecommitdiff
path: root/test/integration/targets/setup_wildfly_server/handlers/main.yml
blob: 98db569dbaaf84d0c9d3405d39cc2c0448d14a42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
- 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 }}'