8、ansible-Ad-Hoc-点对点模式--m file-文件模块 、-m setup-收集模块
==========================================文件模块==========================================
创建文件
ansible webserver -m file -a 'path=/tmp/88/txt mode=771 state=touch'
··path=文件存放的路径/文件名
··mode=文件的权限、默认不写就是644
··state=状态就是 touch创建文件
创建目录
ansible webserver -m file -a 'path=/tmp/88 mode=770 state=directory'
·· directory 是目录的意思
====================================收集模块===============================================
收集某一台主机的信息
ansible host1 -m setup //这会显示所有的信息
收集某一个主机的某一个信息
ansible host1 -m setup -a 'filter=ansible_default_ipv4'
··这里收集的是host1 主机的ip地址
··filter(过滤)=要查找的内容