From 2becfb3532bb9f4a5fc408e3d336954d6c8db11c Mon Sep 17 00:00:00 2001 From: Gitouche <26656-gitouche@users.noreply.framagit.org> Date: Fri, 21 Jan 2022 21:50:02 +0100 Subject: [PATCH] Jitsi : fix 50_update.sh --- podman-jitsi/50_update.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/podman-jitsi/50_update.sh b/podman-jitsi/50_update.sh index 01c1537..848fc3a 100755 --- a/podman-jitsi/50_update.sh +++ b/podman-jitsi/50_update.sh @@ -8,6 +8,7 @@ ensure_pwd_is_scriptdir ensure_not_root ensure_pod_exists ${pod_name} +ensure_systemd_unit_exists ${service_name} current_version=$(podman ps -a --format "{{.Image}}" | grep prosody | awk -F: '{print $NF}') @@ -49,7 +50,7 @@ if [ ${current_version} != ${version} ]; then select yn in "Yes" "No"; do case $yn in Yes) - reinstall_please + reinstall_please && \ cleanup_images exit 0 ;;