可靠的1.6>使用

是否有可能在with_items循环中使用with_first_found ,例如:

- 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工作。


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

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

我对tc服务器(tomcat)有类似的需求。 这就是我所做的:

  • 我将站点特定的配置放在一个单独的任务文件(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
    
  • 从一个单独的任务文件中,我将该任务文件包含在每个站点中:

    - 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

    链接地址: http://www.djcxy.com/p/78393.html

    上一篇: ansible 1.6 > using with

    下一篇: Symfony 2 GenemuFormBundle how to create a jQuery Select2 with Ajax