From d02d4e036c78a6c2cb4f87d15201a3effad28334 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Tue, 9 Mar 2021 12:02:19 +0100 Subject: [PATCH] fix ttcn3-bsc-test under CentOS: install missing osmo-bts-omldummy In binary packages for Debian, osmo-bts-omldummy is (for some reason) part of 'osmo-bts-virtual' package. For CentOS this binary is shipped properly in a separate package, so let's install it. This change fixes ttcn3-bsc-test under CentOS failing with: /usr/local/bin/respawn.sh: line 9: osmo-bts-omldummy: command not found Change-Id: Ibbfd88d914a31dcfd3e33c6025d612d456b6b124 --- osmo-bts-latest/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/osmo-bts-latest/Dockerfile b/osmo-bts-latest/Dockerfile index 6e835d5b..202a29c1 100644 --- a/osmo-bts-latest/Dockerfile +++ b/osmo-bts-latest/Dockerfile @@ -16,6 +16,7 @@ RUN case "$DISTRO" in \ dnf install -y \ osmo-bts \ osmo-bts-virtual \ + osmo-bts-omldummy \ ;; \ esac