aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-03-09 12:02:19 +0100
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-03-09 12:04:33 +0100
commitd02d4e036c78a6c2cb4f87d15201a3effad28334 (patch)
tree294327127cbef2833139736ffa0c16b59dec7477
parente1dcf9b7a2d73d6c9e97e79808e24e5864896e39 (diff)
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
-rw-r--r--osmo-bts-latest/Dockerfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/osmo-bts-latest/Dockerfile b/osmo-bts-latest/Dockerfile
index 6e835d5..202a29c 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