Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit 6afdb77b authored by Arthur BOUDREAULT's avatar Arthur BOUDREAULT
Browse files

:white_check_mark:fix: [601] Don't compare to literal True/False FIXED

parent fcf734b1
No related branches found
No related tags found
No related merge requests found
......@@ -15,11 +15,11 @@
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:
......@@ -27,7 +27,7 @@
--domain "{{ ynh_main_domain }}" \
--password "{{ ynh_admin_password }}" \
{% if ynh_ignore_dyndns_server == True %} --ignore-dyndns {% endif %}
when: ynh_file_install.stat.exists == False
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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment