From 701a0defb668da399db6a39c7ec0f5113457d373 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Wed, 5 Jul 2023 12:04:14 +0200 Subject: [PATCH] cc: kata-deploy: Adapt the SNP's QEMU name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit SNP's QEMU has changed its name some time ago and, due to that, we have been leaving the new binary behind during the uninstall process, which lead to the Operator hanging when uninstalling. Fixes: #7233 Signed-off-by: Fabiano FidĂȘncio --- tools/packaging/kata-deploy-cc/scripts/kata-deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/packaging/kata-deploy-cc/scripts/kata-deploy.sh b/tools/packaging/kata-deploy-cc/scripts/kata-deploy.sh index 1ab0e02539..e266c61f74 100755 --- a/tools/packaging/kata-deploy-cc/scripts/kata-deploy.sh +++ b/tools/packaging/kata-deploy-cc/scripts/kata-deploy.sh @@ -272,7 +272,7 @@ function remove_artifacts() { /opt/confidential-containers/bin/kata-runtime \ /opt/confidential-containers/bin/kata-collect-data.sh \ /opt/confidential-containers/bin/qemu-system-x86_64 \ - /opt/confidential-containers/bin/qemu-system-x86_64-snp \ + /opt/confidential-containers/bin/qemu-system-x86_64-snp-experimental \ /opt/confidential-containers/bin/qemu-system-x86_64-tdx \ /opt/confidential-containers/bin/qemu-system-s390x \ /opt/confidential-containers/bin/cloud-hypervisor \