15 lines
194 B
YAML
15 lines
194 B
YAML
|
---
|
||
|
- hosts: localhost
|
||
|
|
||
|
tasks:
|
||
|
- command: grep toor /etc/passwd
|
||
|
register: output
|
||
|
ignore_errors: yes
|
||
|
|
||
|
- debug:
|
||
|
var: output
|
||
|
|
||
|
- debug:
|
||
|
var: output.stdout
|
||
|
|