mirror of
https://github.com/davestephens/ansible-nas
synced 2025-01-27 02:35:06 +00:00
19 lines
377 B
YAML
19 lines
377 B
YAML
|
---
|
||
|
- name: Verify
|
||
|
hosts: all
|
||
|
gather_facts: false
|
||
|
tasks:
|
||
|
- include_vars:
|
||
|
file: ../../defaults/main.yml
|
||
|
|
||
|
- name: Try and stop and remove Apcupsd
|
||
|
docker_container:
|
||
|
name: "{{ apcupsd_container_name }}"
|
||
|
state: absent
|
||
|
register: result
|
||
|
|
||
|
- name: Check Apcupsd is stopped
|
||
|
assert:
|
||
|
that:
|
||
|
- not result.changed
|