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

19 lines
435 B
YAML
Raw Normal View History

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