From 912fd7d5b3de0af6c9ef33d1194baf5d2c2baa10 Mon Sep 17 00:00:00 2001
From: Arthur BOUDREAULT <boudreaultarthur@ik.me>
Date: Wed, 3 Nov 2021 11:02:49 +0100
Subject: [PATCH] fix: post-install feat is skipped when var is undefined

---
 tasks/app.yml | 21 +++++++++++++++------
 1 file changed, 15 insertions(+), 6 deletions(-)

diff --git a/tasks/app.yml b/tasks/app.yml
index cea8f74..a6b174f 100644
--- a/tasks/app.yml
+++ b/tasks/app.yml
@@ -33,14 +33,23 @@
     owner: "{{ item.owner }}"
     group: "{{ item.group }}"
     mode: "{{ item.mode }}"
-  loop: "{{ ynh_app.post_install }}"
+  loop: "{{ ynh_app.post_install|default([]) }}"
+  when: ynh_app.post_install
 
 - name: Execute script if file type is a script then remove it
-  ansible.builtin.shell: 
-    "{{ pst_install.dest }} && rm -f {{ pst_install.dest }}"
+  ansible.builtin.command: "{{ ynh_app_post_install.dest }}"
   args:
     chdir: /tmp/
-  loop: "{{ ynh_app.post_install }}"
+  loop: "{{ ynh_app.post_install|default([]) }}"
   loop_control:
-    loop_var: pst_install
-  when: pst_install.type == "script"
+    loop_var: ynh_app_post_install
+  when: ynh_app_post_install.type == "script"
+
+- name: Remove script after execution
+  ansible.builtin.file:
+    path: "{{ ynh_app_post_install.dest }}"
+    state: absent
+  loop: "{{ ynh_app.post_install|default([]) }}"
+  loop_control:
+    loop_var: ynh_app_post_install
+  when: ynh_app_post_install.type == "script"
-- 
GitLab