Fixing loop logic for blank values
This commit is contained in:
parent
5b95018a6c
commit
97cf1735cb
2 changed files with 6 additions and 7 deletions
|
@ -17,7 +17,7 @@ nginx_cluster_open_ports:
|
||||||
- 443
|
- 443
|
||||||
nginx_cluster_sebool: ""
|
nginx_cluster_sebool: ""
|
||||||
|
|
||||||
nginx_cluster_aditional_packages:
|
nginx_cluster_additional_packages:
|
||||||
- php-ldap
|
- php-ldap
|
||||||
- php-bcmath
|
- php-bcmath
|
||||||
- php-gd
|
- php-gd
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
package:
|
package:
|
||||||
name: "{{ item }}"
|
name: "{{ item }}"
|
||||||
state: latest
|
state: latest
|
||||||
loop: "{{ nginx_cluster_aditional_packages }}"
|
loop: "{{ nginx_cluster_additional_packages | default([], true) }}"
|
||||||
tags: packages
|
tags: packages
|
||||||
|
|
||||||
- name: Create a symbolic link for host cert
|
- name: Create a symbolic link for host cert
|
||||||
|
@ -100,15 +100,14 @@
|
||||||
proto: tcp
|
proto: tcp
|
||||||
setype: http_port_t
|
setype: http_port_t
|
||||||
state: present
|
state: present
|
||||||
loop: "{{ nginx_cluster_open_ports }}"
|
loop: "{{ nginx_cluster_open_ports | default([], true) }}"
|
||||||
|
|
||||||
- name: Set selinux flags
|
- name: Set selinux flags
|
||||||
seboolean:
|
seboolean:
|
||||||
name: "{{ item }}"
|
name: "{{ item }}"
|
||||||
state: true
|
state: true
|
||||||
persistent: true
|
persistent: true
|
||||||
loop: "{{ nginx_cluster_sebool }}"
|
loop: "{{ nginx_cluster_sebool | default([], true) }}"
|
||||||
when: nginx_cluster_sebool != ''
|
|
||||||
|
|
||||||
- name: Start and enable lsyncd
|
- name: Start and enable lsyncd
|
||||||
service:
|
service:
|
||||||
|
@ -130,7 +129,7 @@
|
||||||
|
|
||||||
- name: Enable firewall for access IPs
|
- name: Enable firewall for access IPs
|
||||||
include_tasks: firewall.yml
|
include_tasks: firewall.yml
|
||||||
loop: "{{ nginx_cluster_access_ip }}"
|
loop: "{{ nginx_cluster_access_ip | default([], true) }}"
|
||||||
loop_control:
|
loop_control:
|
||||||
loop_var: access_ip
|
loop_var: access_ip
|
||||||
when: nginx_cluster_access_ip != ""
|
when: nginx_cluster_access_ip != ""
|
||||||
|
@ -142,5 +141,5 @@
|
||||||
immediate: yes
|
immediate: yes
|
||||||
state: enabled
|
state: enabled
|
||||||
notify: Reload firewalld
|
notify: Reload firewalld
|
||||||
loop: "{{ nginx_cluster_open_ports }}"
|
loop: "{{ nginx_cluster_open_ports | default([], true) }}"
|
||||||
when: nginx_cluster_access_ip == ""
|
when: nginx_cluster_access_ip == ""
|
||||||
|
|
Loading…
Add table
Reference in a new issue