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

19 lines
420 B
YAML
Raw Normal View History

2023-03-09 20:47:42 +00:00
---
- name: Verify
hosts: all
gather_facts: false
tasks:
2023-04-12 22:22:52 +00:00
- ansible.builtin.include_vars:
2023-03-09 20:47:42 +00:00
file: ../../defaults/main.yml
- name: Try and stop and remove ombi
community.docker.docker_container:
name: "{{ ombi_container_name }}"
state: absent
register: result
- name: Check if ombi is stopped
ansible.builtin.assert:
that:
- not result.changed