From ab59557e3556067a69b7d90e8de38b34d7d96790 Mon Sep 17 00:00:00 2001 From: Jozef Behran Date: Mon, 4 Jan 2016 13:01:57 +0100 Subject: [PATCH] Make the ODL download more verbose This changes the ODL downloading commands to ask them to generate progress reports. One of the informations that is provided is the total time taken to download the ODL which turns to be quite useful when investigating problems stemming from slow download times. The second useful effect is that it makes the places in the console output where ODL is being downloaded far easier to quickly locate (hold PgUp/PgDn until you see the characteristic progressbar output, then release PgUp/PgDn and you are roughly at the place where one of the ODL downloads was happening). Change-Id: Iee8eff30aeab28dd8c98c15ea909dc67a7ee8ef2 Signed-off-by: Jozef Behran --- jjb/integration/include-raw-integration-configure-clustering.sh | 2 +- .../include-raw-integration-deploy-controller-offline.sh | 2 +- .../include-raw-integration-deploy-controller-run-test.sh | 2 +- .../include-raw-integration-deploy-controller-verify.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/jjb/integration/include-raw-integration-configure-clustering.sh b/jjb/integration/include-raw-integration-configure-clustering.sh index 90921512a..fda080ddf 100644 --- a/jjb/integration/include-raw-integration-configure-clustering.sh +++ b/jjb/integration/include-raw-integration-configure-clustering.sh @@ -58,7 +58,7 @@ echo "Changing to /tmp" cd /tmp echo "Downloading the distribution from ${ACTUALBUNDLEURL}" -wget --no-verbose '${ACTUALBUNDLEURL}' +wget --progress=dot:mega '${ACTUALBUNDLEURL}' echo "Extracting the new controller..." unzip -q ${BUNDLE} diff --git a/jjb/integration/include-raw-integration-deploy-controller-offline.sh b/jjb/integration/include-raw-integration-deploy-controller-offline.sh index e892f2198..dd2ae6df9 100644 --- a/jjb/integration/include-raw-integration-deploy-controller-offline.sh +++ b/jjb/integration/include-raw-integration-deploy-controller-offline.sh @@ -8,7 +8,7 @@ echo "Clean workspace" rm -rf * echo "Downloading the distribution..." -wget --no-verbose ${ACTUALBUNDLEURL} +wget --progress=dot:mega ${ACTUALBUNDLEURL} echo "Extracting the new controller..." unzip -q ${BUNDLE} diff --git a/jjb/integration/include-raw-integration-deploy-controller-run-test.sh b/jjb/integration/include-raw-integration-deploy-controller-run-test.sh index 78bdec2fe..56b9c466c 100644 --- a/jjb/integration/include-raw-integration-deploy-controller-run-test.sh +++ b/jjb/integration/include-raw-integration-deploy-controller-run-test.sh @@ -35,7 +35,7 @@ echo "Changing to /tmp" cd /tmp echo "Downloading the distribution..." -wget --no-verbose '${ACTUALBUNDLEURL}' +wget --progress=dot:mega '${ACTUALBUNDLEURL}' echo "Extracting the new controller..." unzip -q ${BUNDLE} diff --git a/jjb/integration/include-raw-integration-deploy-controller-verify.sh b/jjb/integration/include-raw-integration-deploy-controller-verify.sh index 863ba3ae8..49f1b6db4 100644 --- a/jjb/integration/include-raw-integration-deploy-controller-verify.sh +++ b/jjb/integration/include-raw-integration-deploy-controller-verify.sh @@ -8,7 +8,7 @@ echo "Clean workspace" rm -rf * echo "Downloading the distribution..." -wget --no-verbose ${ACTUALBUNDLEURL} +wget --progress=dot:mega ${ACTUALBUNDLEURL} echo "Extracting the new controller..." unzip -q ${BUNDLE} -- 2.36.6