diff options
Diffstat (limited to 'repo/features/scripts')
-rw-r--r-- | repo/features/scripts/download_java.sh | 17 | ||||
-rw-r--r-- | repo/features/scripts/download_odl.sh | 17 |
2 files changed, 34 insertions, 0 deletions
diff --git a/repo/features/scripts/download_java.sh b/repo/features/scripts/download_java.sh new file mode 100644 index 00000000..89cc55a3 --- /dev/null +++ b/repo/features/scripts/download_java.sh @@ -0,0 +1,17 @@ +#!/bin/bash +############################################################################## +# Copyright (c) 2016-2017 HUAWEI TECHNOLOGIES CO.,LTD and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +set -ex + +TIMEOUT=10 + +for i in REPLACE_JAVA_PKG; do + mkdir -p /pkg/java + curl --connect-timeout $TIMEOUT -o /pkg/java/${i##*/} $i +done diff --git a/repo/features/scripts/download_odl.sh b/repo/features/scripts/download_odl.sh new file mode 100644 index 00000000..57732c8b --- /dev/null +++ b/repo/features/scripts/download_odl.sh @@ -0,0 +1,17 @@ +#!/bin/bash +############################################################################## +# Copyright (c) 2016 HUAWEI TECHNOLOGIES CO.,LTD and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +set -ex + +TIMEOUT=10 + +for i in REPLACE_ODL_PKG; do + mkdir -p /pkg/odl + curl --connect-timeout $TIMEOUT -o /pkg/odl/${i##*/} $i +done |