ansible-role-knx-monitor/molecule/default/cleanup.yml

24 lines
651 B
YAML
Raw Normal View History

---
- name: Clean up
hosts: all
gather_facts: true
tasks:
- name: Check if the docker-compose file exists.
ansible.builtin.stat:
path: "~/knx-monitor/docker-compose.yml"
register: docker_compose_file
- name: Remove authentik docker-compose.
community.docker.docker_compose:
project_src: ~/knx-monitor/
build: false
state: absent
when: docker_compose_file.stat.exists
become: false
- name: Remove the docker-compose file
ansible.builtin.file:
path: "~/knx-monitor/docker-compose.yml"
state: absent
when: docker_compose_file.stat.exists