12 lines
220 B
YAML
12 lines
220 B
YAML
|
---
|
||
|
- name: reboot
|
||
|
hosts: [rk1]
|
||
|
gather_facts: False
|
||
|
tasks:
|
||
|
- name: rk1
|
||
|
raw: mca-cli-op set-inform http://north-unifi.unej.ac.id:8080/inform
|
||
|
register: info_out
|
||
|
|
||
|
- debug:
|
||
|
var: info_out.stdout_lines
|