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

18 lines
367 B
YAML
Raw Normal View History

2022-09-09 21:24:34 +00:00
---
# This is a Hello World playbook to execute Ansible tests.
- name: Verify
hosts: all
gather_facts: false
tasks:
- name: Try and stop and remove Hello World
docker_container:
name: hello_world
state: absent
register: result
- name: Check Hello World is stopped
assert:
that:
- not result.changed