在多个任务上应用with_items

时间:2016-08-19 13:39:43

标签: ansible ansible-playbook

是否可以将项目列表应用于Ansible playbook中的多个任务?举个例子:

- name: download and execute
  hosts: server1
  tasks:
  - get_url: url="some-url/{{item}}" dest="/tmp/{{item}}"
    with_items:
    - "file1.sh"
    - "file2.sh"
  - shell: /tmp/{{item}} >> somelog.txt
    with_items:
    - "file1.sh"
    - "file2.sh"

是否有一些语法可以避免重复项目列表?

2 个答案:

答案 0 :(得分:15)

截至今天,您可以将with_itemsinclude一起使用,因此您需要将您的剧本分成两个文件:

- name: download and execute
  hosts: server1
  tasks:
  - include: subtasks.yml file={{item}}
    with_items:
    - "file1.sh"
    - "file2.sh"

subtasks.yml

- get_url: url="some-url/{{file}}" dest="/tmp/{{file}}"
- shell: /tmp/{{file}} >> somelog.txt

with_itemsrequest适用于block,但仍未实施。

答案 1 :(得分:5)

您可以在变量文件中定义yaml列表:

ADSET_PAUSED

然后你可以使用

---
myfiles:
- "file1.sh"
- "file2.sh"
...

在任务中。