13 lines
231 B
YAML
13 lines
231 B
YAML
---
|
|
- hosts: "{{ variable_host | default(lab15_standard) }}"
|
|
gather_facts: no
|
|
become: no
|
|
tasks:
|
|
|
|
- name: Check who is in lab
|
|
become: no
|
|
shell: who
|
|
register: out
|
|
|
|
- debug: msg="{{ out.stdout_lines }}"
|