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

26 lines
643 B
YAML
Raw Normal View History

2023-03-09 20:47:42 +00:00
---
- name: Verify
hosts: all
gather_facts: false
tasks:
2023-04-12 22:22:52 +00:00
- ansible.builtin.include_vars:
2023-03-09 20:47:42 +00:00
file: ../../defaults/main.yml
- name: Try and stop and remove piwigo
2023-03-09 20:47:42 +00:00
community.docker.docker_container:
name: "{{ piwigo_container_name }}"
2023-03-09 20:47:42 +00:00
state: absent
register: result
- name: Try and stop and remove piwigo db
community.docker.docker_container:
name: "{{ piwigo_db_container_name }}"
state: absent
register: result_db
- name: Check if piwigo is stopped
2023-03-09 20:47:42 +00:00
ansible.builtin.assert:
that:
- not result.changed
- not result_db.changed