ansible-nas/roles/couchpotato/molecule/default/verify_stopped.yml

19 lines
438 B
YAML
Raw Normal View History

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