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

18 lines
441 B
YAML
Raw Normal View History

2023-03-09 20:47:42 +00:00
---
- name: Verify
hosts: all
gather_facts: false
tasks:
2023-04-12 22:22:52 +00:00
- ansible.builtin.include_vars:
2023-03-09 20:47:42 +00:00
file: ../../defaults/main.yml
- name: Nomad - retrieve information
ansible.builtin.stat:
path: /usr/bin/nomad
register: nomad_file
- name: Nomad - assert that file is removed
ansible.builtin.assert:
that: not nomad_file.stat.exists
fail_msg: "The file /usr/bin/nomad still exists!"