diff --git a/podman-jitsi/50_update.sh b/podman-jitsi/50_update.sh index 3e0dc7f..6f38619 100755 --- a/podman-jitsi/50_update.sh +++ b/podman-jitsi/50_update.sh @@ -14,7 +14,9 @@ current_version=$(podman ps -a --format "{{.Image}}" | grep prosody | awk -F: '{ reinstall_please () { for image in ${upstream_images}; do - podman image pull ${image}:${version} || exit 1 + if ! podman image exists ${image}:${version}; then + podman image pull ${image}:${version} || exit 1 + fi done && check_pod_running ${pod_name} && ./40_stop.sh ./70_disable.sh && \