From aa4c08b7f5a6b89260411916acd6fa5d314969ca Mon Sep 17 00:00:00 2001 From: "guillaume.lambert" Date: Fri, 4 Dec 2020 20:31:51 +0100 Subject: [PATCH] make honeynode download quieter and reduce logs size Signed-off-by: guillaume.lambert Change-Id: If74f5ff7a7bd8990fcb7c9ef209215ce93dd250f --- tests/install_honeynode.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/install_honeynode.sh b/tests/install_honeynode.sh index 3062febf8..57fe50a59 100755 --- a/tests/install_honeynode.sh +++ b/tests/install_honeynode.sh @@ -26,11 +26,11 @@ fi #download honeynode for 1.2.1 devices and install it #complete source code can be found at https://gitlab.com/Orange-OpenSource/lfn/odl/honeynode-simulator.git echo "Installing honeynode for 1.2.1 devices to $(dirname $0)/honeynode/1.2.1/honeynode-simulator directory " -curl --location --request GET "https://gitlab.com/api/v4/projects/17518226/jobs/artifacts/honeynode-plugin-aggregator-1.0.4/download?job=mvn-build" -o $(dirname $0)/honeynode/1.2.1/artifact.zip +curl -sS --location --request GET "https://gitlab.com/api/v4/projects/17518226/jobs/artifacts/honeynode-plugin-aggregator-1.0.4/download?job=mvn-build" -o $(dirname $0)/honeynode/1.2.1/artifact.zip unzip -q $(dirname $0)/honeynode/1.2.1/artifact.zip -d $(dirname $0)/honeynode/1.2.1 rm -f $(dirname $0)/honeynode/1.2.1/artifact.zip #download honeynode for 2.2.1 devices and install it echo "Installing honeynode for 2.2.1 devices to $(dirname $0)/honeynode/2.2.1/honeynode-simulator directory " -curl --location --request GET "https://gitlab.com/api/v4/projects/17518226/jobs/artifacts/honeynode-plugin-aggregator-2.0.5/download?job=mvn-build" -o $(dirname $0)/honeynode/2.2.1/artifact.zip +curl -sS --location --request GET "https://gitlab.com/api/v4/projects/17518226/jobs/artifacts/honeynode-plugin-aggregator-2.0.5/download?job=mvn-build" -o $(dirname $0)/honeynode/2.2.1/artifact.zip unzip -q $(dirname $0)/honeynode/2.2.1/artifact.zip -d $(dirname $0)/honeynode/2.2.1 rm -f $(dirname $0)/honeynode/2.2.1/artifact.zip -- 2.36.6