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

:white_check_mark:Resolve "fix: ci lint"

Merged Arthur BOUDREAULT requested to merge 12-ansible-test-when-is-smth-rather-than-smth into master
1 file
+ 5
4
Compare changes
  • Side-by-side
  • Inline
+ 5
4
@@ -15,19 +15,19 @@
@@ -15,19 +15,19 @@
url: "{{ ynh_install_script_url }}"
url: "{{ ynh_install_script_url }}"
dest: /tmp/install_yunohost.sh
dest: /tmp/install_yunohost.sh
mode: 700
mode: 700
when: ynh_file_install.stat.exists == False
when: not ynh_file_install.stat.exists
- name: Launch Yunohost install script
- name: Launch Yunohost install script
ansible.builtin.command: /tmp/install_yunohost.sh -a
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
- name: Launch Yunohost postinstall
ansible.builtin.command:
ansible.builtin.command:
yunohost tools postinstall \
yunohost tools postinstall \
--domain "{{ ynh_main_domain }}" \
--domain "{{ ynh_main_domain }}" \
--password "{{ ynh_admin_password }}" \
--password "{{ ynh_admin_password }}" \
{% if ynh_ignore_dyndns_server == True %} --ignore-dyndns {% endif %}
{% if ynh_ignore_dyndns_server is true %} --ignore-dyndns {% endif %}
when: ynh_file_install.stat.exists == False
when: not ynh_file_install.stat.exists
- name: Create extra domains
- name: Create extra domains
ansible.builtin.include_tasks: domains.yml
ansible.builtin.include_tasks: domains.yml
@@ -35,6 +35,7 @@
@@ -35,6 +35,7 @@
- name: Run first Yunohost diagnosis
- name: Run first Yunohost diagnosis
ansible.builtin.command: yunohost diagnosis run
ansible.builtin.command: yunohost diagnosis run
 
when: not ynh_file_install.stat.exists
- name: Install domain certificates
- name: Install domain certificates
ansible.builtin.command: yunohost domain cert-install
ansible.builtin.command: yunohost domain cert-install
Loading