ansible-nas/roles/couchpotato/molecule/default/verify_stopped.yml
2023-03-10 22:24:14 +01:00

19 lines
414 B
YAML

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