ansible-nas/roles/silverbullet/molecule/default/verify_stopped.yml
David Stephens b7550c9bf5 Add Silverbullet 🗒️
2024-03-10 18:05:02 +00:00

18 lines
444 B
YAML

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