ansible-nas/roles/nomad/molecule/default/verify_stopped.yml
2023-03-09 21:47:42 +01:00

18 lines
466 B
YAML

---
- name: Verify
hosts: all
gather_facts: false
tasks:
- name: Include vars
ansible.builtin.include_vars:
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!"