mirror of
https://github.com/davestephens/ansible-nas
synced 2025-01-13 03:58:47 +00:00
19 lines
462 B
YAML
19 lines
462 B
YAML
---
|
|
- name: Verify
|
|
hosts: all
|
|
gather_facts: false
|
|
tasks:
|
|
- name: Include vars
|
|
include_vars:
|
|
file: ../../defaults/main.yml
|
|
|
|
- name: Get container state
|
|
docker_container_info:
|
|
name: "{{ deluge_container_name }}"
|
|
register: result
|
|
|
|
- name: Check Deluge is running
|
|
assert:
|
|
that:
|
|
- result.container['State']['Status'] == "running"
|
|
- result.container['State']['Restarting'] == false
|