1. playbook参数详解:

hosts:hosts用于指定要执行指定任务的主机其可以是一个或多个由冒号分隔主机组。user:root指定远程主机上执行任务的用户remote_user:rootvars:变量tasks:任务-name:描述module:options如:servericename=httpdstate=runningshell:/sbin/setenforce0handlers:触发条件files:文件赋权template:模板


tags 用于让用户选择运行或略过playbook中的部分代码。ansible具有幂等性因此会自动跳过没有变化的部分即便如此有些代码为测试其确实没有发生变化的时间依然会非常地长。

此时如果确信其没有变化就可以通过tags跳过此些代码片断。


循环:

循环with_items:----hosts:testhostuser:roottasks:-name:changemodforfilefile:path=/tmp/{{item}}mode=600owner=rootgroup=rootwith_items:-1.txt-2.txt-3.txt



条件判断使用handlers模块:

----hosts:testhostremote_user:roottasks:-name:testcopycopy:src=/tmp/1.txtdest=/tmp/2.txtnotify:testhandlershandlers:-name:testhandlersshell:echo"111111">>/tmp/2.txt

如果要使用handlers模块,则需要调用notify: test handlers是handlers模块的name,要保持一致。

从ansible主上拷贝1.txt到远程服务器2.txt,只有到copy完成了,才会执行handlers。


条件判断条件when:

----hosts:testhostremote_user:rootgather_facts:Truetasks:-name:usewhenshell:touch/tmp/when.txtwhen:ansible_system_vendor=="IBM"

注意变量要写对,不能写数组,数组的要注意.

cat /tmp/when.yml :