From ec8bbfe53373b7be6176f7f48bd5ed214d446e72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20L=C3=B6nnhager?= Date: Tue, 27 Aug 2024 20:50:22 +0200 Subject: [PATCH] Ensure ping utils are installed --- test/scripts/ssh-setup.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/scripts/ssh-setup.sh b/test/scripts/ssh-setup.sh index 5ac5dea15efa..18ef13bf72e2 100644 --- a/test/scripts/ssh-setup.sh +++ b/test/scripts/ssh-setup.sh @@ -128,6 +128,9 @@ function install_packages_apt { echo "Installing required apt packages" apt update apt install -yf xvfb wireguard-tools curl + if ! which ping &>/dev/null; then + apt install -yf iputils-ping || true + fi curl -fsSL https://get.docker.com | sh }