added some ansible playbooks for experiments

This commit is contained in:
2021-08-29 03:35:49 +00:00
parent 93a8e11888
commit 69167a7904
7 changed files with 86 additions and 0 deletions

View File

@ -0,0 +1,21 @@
- 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