7

是否可以with_first_foundwith_items循环中使用,例如:

- template:
    dest=/foo/{{ item.name }}-{{ item.branch | default('master') }}
    src={{ item }}
  with_first_found:
    - {{ item.name }}-{{ item.branch | default('master') }}
    - {{ item.name }}.j2
    - apache_site.j2
  with_items: apache_sites

似乎无法使用with_nested.

4

2 回答 2

5

不支持组合循环,但您可以将它们用作查找:

vars:
  site_locations:
    - {{ item.name }}-{{ item.branch | default('master') }}
    - {{ item.name }}.j2
    - apache_site.j2

tasks:
    - template:
         dest=/foo/{{ item.name }}-{{ item.branch | default('master') }}
         src={{ lookup('first_found', site_locations }}
      with_items: apache_sites
于 2014-09-15T08:30:09.370 回答
0

我对 tc Server (tomcat) 也有类似的需求。这就是我所做的:

  1. 我将特定于站点的配置放在一个单独的任务文件(configure-sites.yml)中:

    - template:
        src: "{{ item }}"
        dest: /foo/{{ apache_site.name }}-{{ apache_site.branch | default('master') }}
      with_first_found:
        - "{{ apache_site.name }}-{{ apache_site.branch | default('master') }}"
        - "{{ apache_site.name }}.j2"
        - apache_site.j2
    
  2. 我从一个单独的任务文件中包含了该任务文件,并将其传递给每个站点:

    - include: configure-sites.yml
      with_items: "{{ apache_sites }}"
      loop_control:
        loop_var: apache_site
    

loop_control需要 Ansible 2.1+:http ://docs.ansible.com/ansible/playbooks_loops.html#loop-control

如果有帮助,您可以准确地看到我在这里所做的:
https ://github.com/bmaupin/ansible-role-tcserver/blob/master/tasks/main.yml
https://github.com/bmaupin/ansible -role-tcserver/blob/master/tasks/configure-instances.yml

于 2016-09-23T15:49:17.207 回答