Ansible Playbook 使用循环语句
Posted pzk7788
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ansible Playbook 使用循环语句相关的知识,希望对你有一定的参考价值。
如下,with_items 是循环的对象,with_items 是 python list 数据结构,task 会循环读取 list 里面的值,key 的名称是 item
[[email protected] ~]$ cat while.yml --- - hosts: 192.168.119.134 user: root tasks: - name: touch file file: path=/tmp/{{ item }} state=touch mode=600 with_items: - 1.txt - 2.txt - 3.txt
以上是关于Ansible Playbook 使用循环语句的主要内容,如果未能解决你的问题,请参考以下文章