2022-09-10 18:38:00 +00:00
|
|
|
---
|
|
|
|
- name: Verify
|
|
|
|
hosts: all
|
|
|
|
gather_facts: false
|
|
|
|
tasks:
|
2023-04-12 22:29:29 +00:00
|
|
|
- ansible.builtin.include_vars:
|
2022-09-11 16:33:19 +00:00
|
|
|
file: ../../defaults/main.yml
|
|
|
|
|
2022-09-10 18:38:00 +00:00
|
|
|
- name: Try and stop and remove Airsonic
|
2023-04-15 13:11:49 +00:00
|
|
|
community.docker.docker_container:
|
2022-09-11 16:33:19 +00:00
|
|
|
name: "{{ airsonic_container_name }}"
|
2022-09-10 18:38:00 +00:00
|
|
|
state: absent
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- name: Check Airsonic is stopped
|
2023-04-12 22:29:29 +00:00
|
|
|
ansible.builtin.assert:
|
2022-09-10 18:38:00 +00:00
|
|
|
that:
|
|
|
|
- not result.changed
|