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

19 lines
435 B
YAML
Raw Normal View History

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