ansible-nas/roles/gotify/molecule/default/verify_stopped.yml
2023-04-12 23:22:52 +01:00

18 lines
426 B
YAML

---
- name: Verify
hosts: all
gather_facts: false
tasks:
- ansible.builtin.include_vars:
file: ../../defaults/main.yml
- name: Try and stop and remove gotify
community.docker.docker_container:
name: "{{ gotify_container_name }}"
state: absent
register: result
- name: Check if gotify is stopped
ansible.builtin.assert:
that:
- not result.changed