18 lines
279 B
YAML
18 lines
279 B
YAML
---
|
|
|
|
- hosts: all
|
|
connection: local
|
|
any_errors_fatal: true
|
|
gather_facts: no
|
|
|
|
tasks:
|
|
- name: Gather status
|
|
uri:
|
|
body_format: json
|
|
url: "http://{{ansible_host}}:26657/status"
|
|
register: status
|
|
|
|
- name: Print status
|
|
debug: var=status.json.result
|
|
|