14 lines
169 B
YAML
14 lines
169 B
YAML
|
---
|
||
|
- hosts: localhost
|
||
|
|
||
|
tasks:
|
||
|
- command: grep root /etc/passwd
|
||
|
register: output
|
||
|
|
||
|
- debug:
|
||
|
var: output
|
||
|
|
||
|
- debug:
|
||
|
var: output.stdout
|
||
|
|