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

Draft: Resolve "feat: integrate containers into YunoHost"

Open Arthur BOUDREAULT requested to merge 69-feat-integrate-containers-into-yunohost into main
7 unresolved threads
3 files
+ 14
16
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -23,7 +23,7 @@
ansible.builtin.command: yunohost app install {{ ynh_app.link }} \
--label "{{ ynh_app.label }}" \
--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
# Post-installation part
@@ -34,7 +34,7 @@
owner: "{{ item.owner | default(ynh_app.link) }}"
group: "{{ item.group | default('www-data') }}"
mode: "{{ (item.type == 'script') | ternary('740', '660') }}"
loop: "{{ ynh_app.post_install|default([]) }}"
loop: "{{ ynh_app.post_install | default([]) }}"
when: ynh_app.post_install
tags: apps
@@ -42,7 +42,7 @@
ansible.builtin.command: "{{ ynh_app_post_install.dest }}"
args:
chdir: /tmp/
loop: "{{ ynh_app.post_install|default([]) }}"
loop: "{{ ynh_app.post_install | default([]) }}"
loop_control:
loop_var: ynh_app_post_install
when: ynh_app_post_install.type == "script"
@@ -52,7 +52,7 @@
ansible.builtin.file:
path: "{{ ynh_app_post_install.dest }}"
state: absent
loop: "{{ ynh_app.post_install|default([]) }}"
loop: "{{ ynh_app.post_install | default([]) }}"
loop_control:
loop_var: ynh_app_post_install
when: ynh_app_post_install.type == "script"
Loading