常用参数:
chdir 运行command命令前先cd到这个目录
creates 当指定的这个参数对应的文件存在,就不行command命令,如果不存在,那么就运行command命令
案例:
~~~
[admin@node1 ~]$ ansible webserver -m command -a "chdir=/tmp touch aa01.txt"
[WARNING]: Consider using file module with state=touch rather than running touch
192.168.52.130 | SUCCESS | rc=0 >>
192.168.52.132 | SUCCESS | rc=0 >>
192.168.52.131 | SUCCESS | rc=0 >>
~~~
~~~
[admin@node1 ~]$ ansible webserver -m command -a "chdir=/tmp touch testfile.txt creates=/tmp/aa01.txt"
192.168.52.130 | SUCCESS | rc=0 >>
skipped, since /tmp/aa01.txt exists
192.168.52.132 | SUCCESS | rc=0 >>
skipped, since /tmp/aa01.txt exists
192.168.52.131 | SUCCESS | rc=0 >>
skipped, since /tmp/aa01.txt exists
~~~
- 第一章:Ansible基础入门
- 第二章:Ansible系列手册
- 第一节:Ansible系列之主机清单
- 第二节:Ansible系列之变量
- 第三节:Ansible系列之YAML
- 第四节:Ansible系列之条件判断
- 第五节:Ansible系列之循环
- 第六节: Ansible系列之tags
- 第七节:Ansible系列之Jinja2
- 第三章:Ansible系列之模块
- 第一节:user模块
- 第二节:group模块
- 第三节:cron模块
- 第四节:copy模块
- 第五节: file模块
- 第六节:yum模块
- 第七节:service模块
- 第八节:shell模块
- 第九节:script模块
- 第十节:setup模块
- 第十一节:filesystem和mount模块
- 第十二节:synchronize模块
- 第十三节: get_url模块
- 第十四节: package模块
- 第十五节:stat模块
- 第十六节:unarchive模块
- 第十七节: commang模块
- 第四章:Ansible-playbook介绍
- 第五章:Ansible系统环境
- 第一节:Ansible Role 系统环境之epel设置