mirror of
https://github.com/ansible/ansible.git
synced 2026-07-28 16:15:12 +02:00
11 lines
174 B
YAML
11 lines
174 B
YAML
- hosts: testhost
|
|
gather_facts: no
|
|
tasks:
|
|
- name: Use standard ping module
|
|
ping:
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- '"location" not in result'
|