ansible-nas/roles/airsonic/molecule/default/verify.yml

18 lines
416 B
YAML
Raw Normal View History

2022-09-10 18:38:00 +00:00
---
# This is an example playbook to execute Ansible tests.
- name: Verify
hosts: all
gather_facts: false
tasks:
- name: Get container state
docker_container_info:
name: airsonic
register: result
- name: Check Airsonic is running
assert:
that:
- result.container['State']['Status'] == "running"
- result.container['State']['Restarting'] == false