mirror of
https://github.com/davestephens/ansible-nas
synced 2025-01-13 12:08:53 +00:00
4960286632
freshrss, get_iplayer, gitlab, glances, gotify, guacamole, healthchecks.io
19 lines
528 B
YAML
19 lines
528 B
YAML
---
|
|
- name: Verify
|
|
hosts: all
|
|
gather_facts: false
|
|
tasks:
|
|
- name: Include vars
|
|
ansible.builtin.include_vars:
|
|
file: ../../defaults/main.yml
|
|
|
|
- name: Get gotify container state
|
|
community.docker.docker_container:
|
|
name: "{{ gotify_container_name }}"
|
|
register: result
|
|
|
|
- name: Check if gotify containers are running
|
|
ansible.builtin.assert:
|
|
that:
|
|
- result.container['State']['Status'] == "running"
|
|
- result.container['State']['Restarting'] == false
|