22 lines
393 B
YAML
22 lines
393 B
YAML
|
- hosts: all
|
||
|
remote_user: hyung-hwan
|
||
|
tasks:
|
||
|
- name: test connection
|
||
|
find:
|
||
|
paths: /var/log
|
||
|
size: '1000000'
|
||
|
recurse: yes
|
||
|
register: out
|
||
|
|
||
|
- name: print result
|
||
|
debug:
|
||
|
msg: "xxx: {{ item.path }}"
|
||
|
with_items: "{{ out.files }}"
|
||
|
|
||
|
|
||
|
## - debug: var=item.path
|
||
|
## with_items: "{{ out.files }}"
|
||
|
|
||
|
## - debug: var=out.files
|
||
|
|