mirror of
https://github.com/ansible/ansible.git
synced 2026-07-29 16:35:20 +02:00
12 lines
272 B
YAML
12 lines
272 B
YAML
- hosts: all
|
|
gather_facts: no
|
|
tasks:
|
|
- name: verify a template retrieved from the cache renders
|
|
debug:
|
|
var: my_template
|
|
|
|
- name: verify the values retrieved from the cache are correct
|
|
assert:
|
|
that:
|
|
- my_template == verify
|