roles/php5-fpm: Fix creation of pool configs for both tls and non-tls vhosts

Ansible's union thing only works on sets and lists, here we have a
dict.

Signed-off-by: Alan Orth <alan.orth@gmail.com>
This commit is contained in:
Alan Orth 2015-02-19 19:41:48 +03:00
parent b93da27fde
commit 6b528ecc92
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 9 additions and 1 deletions

View File

@ -11,7 +11,15 @@
- name: Copy php5-fpm pool config
template: src=pool.conf.j2 dest=/etc/php5/fpm/pool.d/{{ item.nginx_domain_name }}.conf owner=root group=root mode=0644
with_items: nginx_vhosts | union(nginx_tls_vhosts)
with_items: nginx_vhosts
when: nginx_vhosts is defined
notify: restart php5-fpm
tags: php5-fpm
- name: Copy php5-fpm pool config
template: src=pool.conf.j2 dest=/etc/php5/fpm/pool.d/{{ item.nginx_domain_name }}.conf owner=root group=root mode=0644
with_items: nginx_tls_vhosts
when: nginx_tls_vhosts is defined
notify: restart php5-fpm
tags: php5-fpm