From f5364d61adf8e3089cd1f8d55324e767541770d5 Mon Sep 17 00:00:00 2001
From: Arthur BOUDREAULT <boudreaultarthur@ik.me>
Date: Wed, 13 Oct 2021 13:50:54 +0200
Subject: [PATCH] =?UTF-8?q?=E2=9C=85fix:=20[601]=20Don't=20compare=20to=20?=
 =?UTF-8?q?literal=20True/False=20FIXED?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 tasks/main.yml | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/tasks/main.yml b/tasks/main.yml
index 0544997..86b9ef5 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -15,19 +15,19 @@
     url: "{{ ynh_install_script_url }}"
     dest: /tmp/install_yunohost.sh
     mode: 700
-  when: ynh_file_install.stat.exists == False
+  when: not ynh_file_install.stat.exists
 
 - name: Launch Yunohost install script
   ansible.builtin.command: /tmp/install_yunohost.sh -a
-  when: ynh_file_install.stat.exists == False
+  when: not ynh_file_install.stat.exists
 
 - name: Launch Yunohost postinstall
   ansible.builtin.command:
     yunohost tools postinstall \
       --domain "{{ ynh_main_domain }}" \
       --password "{{ ynh_admin_password }}" \
-      {% if ynh_ignore_dyndns_server == True %} --ignore-dyndns {% endif %}
-  when: ynh_file_install.stat.exists == False
+      {% if ynh_ignore_dyndns_server is true %} --ignore-dyndns {% endif %}
+  when: not ynh_file_install.stat.exists
 
 - name: Create extra domains
   ansible.builtin.include_tasks: domains.yml
@@ -35,6 +35,7 @@
 
 - name: Run first Yunohost diagnosis
   ansible.builtin.command: yunohost diagnosis run
+  when: not ynh_file_install.stat.exists
 
 - name: Install domain certificates
   ansible.builtin.command: yunohost domain cert-install
-- 
GitLab