From 24f11a30bf868d447114f3842b9ea3416e793c0a Mon Sep 17 00:00:00 2001 From: Gitouche <26656-gitouche@users.noreply.framagit.org> Date: Fri, 22 Nov 2024 18:53:32 +0100 Subject: [PATCH] Fix podman image rm (90 prune pour container simple) --- _podman-common/90_prune_container.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_podman-common/90_prune_container.sh b/_podman-common/90_prune_container.sh index 5738419..f7c9e16 100755 --- a/_podman-common/90_prune_container.sh +++ b/_podman-common/90_prune_container.sh @@ -18,5 +18,5 @@ ensure_systemd_unit_not_exists "${service_name}" # remove images for image in ${upstream_images} ; do - podman image rm -f "$(podman image list -a -q -- ${image})" || echo Image "${image}" not found. + podman image rm -f $(podman image list -a -q -- ${image}) || echo Image ${image} not found. done