ansible-nas/roles/heimdall/molecule/default/verify_stopped.yml
David Stephens 14b386ed14 Use FQCNs
2023-04-12 23:29:29 +01:00

20 lines
469 B
YAML

---
# This is an example playbook to execute Ansible tests.
- name: Verify
hosts: all
gather_facts: false
tasks:
- ansible.builtin.include_vars:
file: ../../defaults/main.yml
- name: Try and stop and remove Heimdall
docker_container:
name: "{{ heimdall_container_name }}"
state: absent
register: result
- name: Check Heimdall is stopped
ansible.builtin.assert:
that:
- not result.changed