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

20 lines
414 B
YAML
Raw Normal View History

2022-09-12 22:27:44 +00:00
---
- name: Verify
hosts: all
gather_facts: false
tasks:
2023-03-10 21:24:14 +00:00
- name: Include vars
include_vars:
2022-09-12 22:27:44 +00:00
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