aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2021-02-24 13:40:27 +0100
committerosmith <osmith@sysmocom.de>2021-02-25 14:43:59 +0000
commit27ee885a689163cede1fc0c7f76584ccbb7abb41 (patch)
tree0a3ded5aa4fd889dd7e46adc47d98d65db5f22f4
parent89bf3592c25ff47888c42d2e57be2b38e0f25d62 (diff)
repo-install-test: apt update before install wget
Fix errors caused by outdated package index: + apt install -y wget ... Err:2 http://security.debian.org/debian-security stretch/updates/main amd64 libssl1.1 amd64 1.1.0l-1~deb9u2 404 Not Found [IP: 151.101.130.132 80] Change-Id: I9d28967dc556e95eec2e3e3d7ff88533154acf3c
-rwxr-xr-xscripts/repo-install-test/run-inside-docker.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/repo-install-test/run-inside-docker.sh b/scripts/repo-install-test/run-inside-docker.sh
index f05f01c..2ed78f6 100755
--- a/scripts/repo-install-test/run-inside-docker.sh
+++ b/scripts/repo-install-test/run-inside-docker.sh
@@ -110,6 +110,7 @@ configure_osmocom_repo_debian() {
# Add repository key
if ! [ -e "$release_key" ]; then
+ apt-get update
apt install -y wget
wget -O "$release_key" "https://$obs_repo/Release.key"
fi