From 4786745bfe7a1fbc953e7fa2433c94df354035c4 Mon Sep 17 00:00:00 2001 From: Davanum Srinivas Date: Tue, 20 Jan 2026 13:58:51 -0500 Subject: [PATCH] test/images: Fix zookeeper-installer netcat package for bookworm In Debian bookworm, 'netcat' is a virtual package with no installation candidate. Replace it with 'netcat-openbsd' which provides the actual netcat implementation. Build failure: ``` > [2/7] RUN clean-install wget bash netcat: 0.382 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [291 kB] 3.174 Reading state information... 3.180 Package netcat is a virtual package provided by: 3.180 netcat-openbsd 1.219-1 3.180 netcat-traditional 1.10-47 3.180 3.182 E: Package 'netcat' has no installation candidate ------ ``` Signed-off-by: Davanum Srinivas --- test/images/pets/zookeeper-installer/Dockerfile | 2 +- test/images/pets/zookeeper-installer/VERSION | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/images/pets/zookeeper-installer/Dockerfile b/test/images/pets/zookeeper-installer/Dockerfile index 64b3b8f9ceb..ecbb3df71cc 100644 --- a/test/images/pets/zookeeper-installer/Dockerfile +++ b/test/images/pets/zookeeper-installer/Dockerfile @@ -19,7 +19,7 @@ FROM $BASEIMAGE CROSS_BUILD_COPY qemu-QEMUARCH-static /usr/bin/ -RUN clean-install wget bash netcat +RUN clean-install wget bash netcat-openbsd ADD on-start.sh / diff --git a/test/images/pets/zookeeper-installer/VERSION b/test/images/pets/zookeeper-installer/VERSION index 810ee4e91e2..d3bdbdf1fda 100644 --- a/test/images/pets/zookeeper-installer/VERSION +++ b/test/images/pets/zookeeper-installer/VERSION @@ -1 +1 @@ -1.6 +1.7