ansible-nas/roles/couchpotato/molecule/default/verify_stopped.yml
2023-04-15 14:11:49 +01:00

18 lines
438 B
YAML

---
- name: Verify
hosts: all
gather_facts: false
tasks:
- ansible.builtin.include_vars:
file: ../../defaults/main.yml
- name: Try and stop and remove Couchpotato
community.docker.docker_container:
name: "{{ couchpotato_container_name }}"
state: absent
register: result
- name: Check Couchpotato is stopped
ansible.builtin.assert:
that:
- not result.changed