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

20 lines
408 B
YAML
Raw Normal View History

2022-09-11 17:37:29 +00:00
---
- name: Verify
hosts: all
gather_facts: false
tasks:
2023-03-10 21:24:14 +00:00
- name: Include vars
include_vars:
2022-09-11 17:37:29 +00:00
file: ../../defaults/main.yml
- name: Try and stop and remove Booksonic
docker_container:
name: "{{ booksonic_container_name }}"
state: absent
register: result
- name: Check Booksonic is stopped
assert:
that:
- not result.changed