roles: Fix issue raised by ansible-lint

[601] Don't compare to literal True/False
This commit is contained in:
2019-11-21 22:55:39 +02:00
parent e68bbb5055
commit 1c631739e7
5 changed files with 6 additions and 6 deletions

View File

@ -71,7 +71,7 @@
- name: Configure Let's Encrypt
include_tasks: letsencrypt.yml
when: use_letsencrypt is defined and use_letsencrypt == True
when: use_letsencrypt is defined and use_letsencrypt is True
tags: letsencrypt
# vim: set ts=2 sw=2:

View File

@ -3,12 +3,12 @@
- block:
- name: Install WordPress
git: repo=https://github.com/WordPress/WordPress.git dest={{ nginx_root_prefix }}/{{ item.domain_name }}/wordpress version={{ item.wordpress_version }} depth=1 force=yes
when: item.has_wordpress is defined and item.has_wordpress == True
when: item.has_wordpress is defined and item.has_wordpress is True
loop: "{{ nginx_vhosts }}"
- name: Fix WordPress directory permissions
file: path={{ nginx_root_prefix }}/{{ item.domain_name }} state=directory owner=nginx group=nginx recurse=yes
when: item.has_wordpress is defined and item.has_wordpress == True
when: item.has_wordpress is defined and item.has_wordpress is True
loop: "{{ nginx_vhosts }}"
tags: wordpress