From 71fe85ec90871ffcfb57060f28760f607e0e6d08 Mon Sep 17 00:00:00 2001 From: ImranullahKhann Date: Thu, 8 Jan 2026 19:55:04 +0500 Subject: [PATCH] ci: add iproute2 to the list of packages in apt-packages.sh When running the command 'make docker-test', almost all zdtm tests fail, logging 'ip: not found'. 'ip' command of the iproute2 package was missing. So added the package to the list of dependencies in 'apt-packages.sh'. Now tests run Signed-off-by: ImranullahKhann --- contrib/dependencies/apt-packages.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/dependencies/apt-packages.sh b/contrib/dependencies/apt-packages.sh index 1fd42d4e6..7963be7b4 100755 --- a/contrib/dependencies/apt-packages.sh +++ b/contrib/dependencies/apt-packages.sh @@ -13,6 +13,7 @@ fi build-essential \ gdb \ git-core \ + iproute2 \ iptables \ kmod \ libaio-dev \