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 5a574b2d authored by Arthur BOUDREAULT's avatar Arthur BOUDREAULT Committed by Christophe Chaudier
Browse files

:recycle:refactor: changed vars to reflect new variable names + removed git...

:recycle:refactor: changed vars to reflect new variable names + removed git requirement (already installed with git role)
parent 7e648860
No related branches found
No related tags found
1 merge request!3✅Resolve "refactor vars"
...@@ -2,49 +2,48 @@ ...@@ -2,49 +2,48 @@
- name: Install requirements - name: Install requirements
ansible.builtin.apt: ansible.builtin.apt:
name: name:
- git
- dialog - dialog
state: present state: present
- name: Test if Yunohost is already installed - name: Test if Yunohost is already installed
ansible.builtin.stat: path=/etc/yunohost/installed ansible.builtin.stat: path=/etc/yunohost/installed
register: yunohost_file_install register: ynh_file_install
- name: Download install script - name: Download Yunohost install script
ansible.builtin.get_url: ansible.builtin.get_url:
url: "{{ yunohost.install_script_url }}" url: "{{ ynh_install_script_url }}"
dest: /tmp/install_yunohost.sh dest: /tmp/install_yunohost.sh
mode: 700 mode: 700
when: yunohost_file_install.stat.exists == False when: ynh_file_install.stat.exists == False
- name: Launch script - name: Launch Yunohost install script
ansible.builtin.command: /tmp/install_yunohost.sh -a ansible.builtin.command: /tmp/install_yunohost.sh -a
when: yunohost_file_install.stat.exists == False when: ynh_file_install.stat.exists == False
- name: Launch postinsstall - name: Launch Yunohost postinstall
ansible.builtin.shell: " ansible.builtin.shell: "
yunohost tools postinstall \ yunohost tools postinstall \
--domain {{ yunohost.domain }} \ --domain {{ ynh_main_domain }} \
--password {{ yunohost.password }} \ --password {{ ynh_admin_password }} \
{% if yunohost.ignore_dyndns == True %} --ignore-dyndns {% endif %} {% if ynh_ignore_dyndns_server == True %} --ignore-dyndns {% endif %}
" "
when: yunohost_file_install.stat.exists == False when: ynh_file_install.stat.exists == False
- name: Create domains - name: Create extra domains
ansible.builtin.include: domains.yml ansible.builtin.include: domains.yml
when: yunohost.extra_domains when: ynh_extra_domains
- name: Run diagnosis # Required to install certificates - name: Run first Yunohost diagnosis # Required to install certificates
ansible.builtin.shell: yunohost diagnosis run ansible.builtin.shell: yunohost diagnosis run
- name: Install certificates - name: Install domain certificates
ansible.builtin.shell: yunohost domain cert-install ansible.builtin.shell: yunohost domain cert-install
changed_when: False changed_when: False
- name: Add users - name: Add Yunohost users
ansible.builtin.include: users.yml ansible.builtin.include: users.yml
when: yunohost.users when: ynh_users
- name: Install apps - name: Install Yunohost apps
ansible.builtin.include: apps.yml ansible.builtin.include: apps.yml
when: yunohost.apps when: ynh_apps
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