From 9c7755b6e8d2e2d83ebb69b4a01e8d8c154ad86b Mon Sep 17 00:00:00 2001 From: Vitaliy Filippov Date: Fri, 8 Dec 2023 00:10:12 +0300 Subject: [PATCH] Use qemu-storage-daemon from QEMU 8.1.2 for CSI --- csi/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/csi/Dockerfile b/csi/Dockerfile index eea44a9e..d774be84 100644 --- a/csi/Dockerfile +++ b/csi/Dockerfile @@ -35,9 +35,9 @@ RUN (echo deb http://vitastor.io/debian bookworm main > /etc/apt/sources.list.d/ wget -q -O /etc/apt/trusted.gpg.d/vitastor.gpg https://vitastor.io/debian/pubkey.gpg && \ apt-get update && \ apt-get install -y vitastor-client && \ - apt-get download qemu-system-common && \ - apt-get download qemu-block-extra && \ - dpkg -x qemu-system-common*.deb tmp1 && \ + wget https://vitastor.io/archive/qemu/qemu-bookworm-8.1.2%2Bds-1%2Bvitastor1/qemu-utils_8.1.2%2Bds-1%2Bvitastor1_amd64.deb && \ + wget https://vitastor.io/archive/qemu/qemu-bookworm-8.1.2%2Bds-1%2Bvitastor1/qemu-block-extra_8.1.2%2Bds-1%2Bvitastor1_amd64.deb && \ + dpkg -x qemu-utils*.deb tmp1 && \ dpkg -x qemu-block-extra*.deb tmp1 && \ cp -a tmp1/usr/bin/qemu-storage-daemon /usr/bin/ && \ mkdir -p /usr/lib/x86_64-linux-gnu/qemu && \