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 5bc931df authored by Arthur BOUDREAULT's avatar Arthur BOUDREAULT
Browse files

feat: execute if script ok

parent a2986c05
No related branches found
No related tags found
1 merge request!16Resolve "feat: add app post_install"
Pipeline #2982 failed
...@@ -56,3 +56,11 @@ ynh_apps: null ...@@ -56,3 +56,11 @@ ynh_apps: null
# args: # args:
# domain: domain.tld # domain: domain.tld
# path: /ttrss # path: /ttrss
# post_install:
# - src: "templates/file.sh.j2"
# dest: "/tmp/script.sh"
# type: script
# owner: tinyrss
# group: www-data
# mode: "0770"
...@@ -19,20 +19,14 @@ ...@@ -19,20 +19,14 @@
#-----------------------------------------------------------------------------# #-----------------------------------------------------------------------------#
# Installation part # Installation part
- name: Install yunohost apps
- name: debug
debug:
msg: "Voici le résultat :{{ ynh_app }}"
tags: apps
- name: Install yunohost apps (you are inside app.yml)
ansible.builtin.command: yunohost app install {{ ynh_app.link }} \ ansible.builtin.command: yunohost app install {{ ynh_app.link }} \
--label "{{ ynh_app.label }}" \ --label "{{ ynh_app.label }}" \
--args "{% for key, value in ynh_app.args.items() %}{{ key }}={{ value }}{% if not loop.last %}&{% endif %}{% endfor %}" --args "{% for key, value in ynh_app.args.items() %}{{ key }}={{ value }}{% if not loop.last %}&{% endif %}{% endfor %}"
changed_when: False changed_when: False
tags: apps
- name: Transfer template to node (can be a config file or a script) #loop item.post-install # Post-installation part
- name: Transfer template to node (can be a config file or a script)
ansible.builtin.template: ansible.builtin.template:
src: "{{ item.src }}" src: "{{ item.src }}"
dest: "{{ item.dest }}" dest: "{{ item.dest }}"
...@@ -40,5 +34,12 @@ ...@@ -40,5 +34,12 @@
group: "{{ item.group }}" group: "{{ item.group }}"
mode: "{{ item.mode }}" mode: "{{ item.mode }}"
loop: "{{ ynh_app.post_install }}" loop: "{{ ynh_app.post_install }}"
when: ynh_app.post_install is defined
tags: apps - name: Execute script if file type is a script
ansible.builtin.command: "{{ pst_install.dest }}"
args:
chdir: /tmp/
loop: "{{ ynh_app.post_install }}"
loop_control:
loop_var: pst_install
when: pst_install.type == "script"
...@@ -18,37 +18,20 @@ ...@@ -18,37 +18,20 @@
# # # #
#-----------------------------------------------------------------------------# #-----------------------------------------------------------------------------#
- name: List currently installed apps (you are inside apps.yml) - name: List currently installed apps
ansible.builtin.command: yunohost app map --output-as json ansible.builtin.command: yunohost app map --output-as json
register: ynh_installed_apps_raw register: ynh_installed_apps_raw
changed_when: False changed_when: False
tags: apps tags: apps
- name: Format json of apps (you are inside apps.yml) - name: Format json of apps
ansible.builtin.set_fact: ynh_installed_apps="{{ ynh_installed_apps_raw.stdout | from_json }}" ansible.builtin.set_fact: ynh_installed_apps="{{ ynh_installed_apps_raw.stdout | from_json }}"
tags: apps tags: apps
- name: Install yunohost apps and perform post-install (you are inside apps.yml) - name: Install yunohost apps and perform post-install
ansible.builtin.include_tasks: app.yml ansible.builtin.include_tasks: app.yml
loop: "{{ ynh_apps }}" loop: "{{ ynh_apps }}"
loop_control: loop_control:
loop_var: ynh_app loop_var: ynh_app
when: ynh_app.label not in ynh_installed_apps.values() when: ynh_app.label not in ynh_installed_apps.values()
tags: apps tags: apps
# - name: debug (you are in apps.yml)
# debug:
# msg: "Voici le résultat :{{ item.post_install.0.src }}"
# loop: "{{ ynh_apps.post_install.key }}"
# when: ynh_apps.post_install is defined
# tags: apps
## post-install:
# boucler sur les apps et inclure ce fichier de tasks
# install app puis post install puis app puis post-install
# quand dans fichier apps
# command remplacée par include app.yml
# command à l'intérieur du fichier de tache app
# dans app il faudra boucler sur app pour
# item.post_installl
...@@ -69,12 +69,8 @@ ...@@ -69,12 +69,8 @@
ansible.builtin.include_tasks: users.yml ansible.builtin.include_tasks: users.yml
when: ynh_users when: ynh_users
- name: Install Yunohost apps (you are in main.yml) - name: Install Yunohost apps
ansible.builtin.include_tasks: apps.yml ansible.builtin.include_tasks: apps.yml
when: ynh_apps when: ynh_apps
tags: apps tags: apps
# - name: Launch post-install for apps
# ansible.builtin.include_tasks: postinstall.yml
# loop: "{{ post_install | dict2items }}"
# when: post_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