blob: 7014c0a725cf514f56585b123f64a6d01a20d978 [file] [log] [blame]
---
- name: Shell module example
hosts: 127.0.0.1
tasks:
- name: Check system information
shell:
"curl -v http://TARGET-IP:32080/appmgr/ric/v1/health/ready 2>&1"
register: os_info
- debug:
msg: "{{os_info.stdout_lines}}"