11 lines
222 B
YAML
11 lines
222 B
YAML
---
|
|
- name: Verify
|
|
hosts: all
|
|
gather_facts: true
|
|
|
|
tasks:
|
|
- name: Add verification tasks here
|
|
ansible.builtin.assert:
|
|
that: true
|
|
msg: "Replace this with real assertions"
|
|
tags: [verify]
|