From dc29c679098f22bc085803627c7df098a44acba1 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Thu, 16 Dec 2021 12:30:07 +0100 Subject: [PATCH] debian-bullseye-titan: install ping Add ping, so ttcn3-tcpdump-start.sh from osmo-ttcn3-hacks.git works as expected. It is supposed to wait until tcpdump is properly capturing packets, by generating dummy packets with ping and waiting until the pcap file gains size. However since ping is currently not installed, it will just wait 10 seconds before executing tests. Fix for: Waiting for packet dumper to start... 0 Waiting for packet dumper to start... 1 Waiting for packet dumper to start... 2 Waiting for packet dumper to start... 3 Waiting for packet dumper to start... 4 Waiting for packet dumper to start... 5 Waiting for packet dumper to start... 6 Waiting for packet dumper to start... 7 Waiting for packet dumper to start... 8 Waiting for packet dumper to start... 9 Related: OS#4969 Change-Id: I46cf22e7eab7dcd4b3835a8c7aa48654aef6c65a --- debian-bullseye-titan/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/debian-bullseye-titan/Dockerfile b/debian-bullseye-titan/Dockerfile index 1d5c1cdf..0b1fbdac 100644 --- a/debian-bullseye-titan/Dockerfile +++ b/debian-bullseye-titan/Dockerfile @@ -27,6 +27,7 @@ RUN apt-get update && \ DEBIAN_FRONTEND='noninteractive' apt-get install -y --no-install-recommends --no-install-suggests \ build-essential \ git \ + inetutils-ping \ netcat-openbsd \ procps \ python3-pip \