Merge pull request #21 from nginxinc/(bug)/replace-conditional-check

Replace `&&` with `and`
This commit is contained in:
Alessandro Fael Garcia 2018-04-13 13:00:50 -07:00 committed by GitHub
commit ae27bdcbed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -10,13 +10,13 @@
remote_src: yes
src: /etc/nginx/conf.d/default.conf
dest: /etc/nginx/conf.d/default.conf.bak
when: default_exists.stat.exists && main_upload_enable
when: default_exists.stat.exists and main_upload_enable
- name: "(Setup: All NGINX) Delete NGINX Default Configuration File"
file:
path: /etc/nginx/conf.d/default.conf
state: absent
when: default_exists.stat.exists && main_upload_enable
when: default_exists.stat.exists and main_upload_enable
- name: "(Setup: All NGINX) Upload NGINX Main Configuration File"
copy:

View File

@ -10,13 +10,13 @@
remote_src: yes
src: /etc/nginx/conf.d/default.conf
dest: /etc/nginx/conf.d/default.conf.bak
when: default_exists.stat.exists && main_template_enable
when: default_exists.stat.exists and main_template_enable
- name: "(Setup: All NGINX) Delete NGINX Default Configuration File"
file:
path: /etc/nginx/conf.d/default.conf
state: absent
when: default_exists.stat.exists && main_template_enable
when: default_exists.stat.exists and main_template_enable
- name: "(Setup: All NGINX) Dynamically Generate NGINX Main Configuration File"
template: