Fix extjs.zip download URL

Switch to a different URL, found here [1], which works and point to the
same ext-2.2.zip as used so far.

[1] https://issues.cloudera.org/browse/DISTRO-476

Change-Id: I4a74c0d4d870683c4e4cc311736cd74349563fab
Closes-Bug: #1444348
(cherry picked from commit 2d7defcaca)
This commit is contained in:
Pino Toscano 2015-04-16 10:31:37 +02:00
parent e1cac293a3
commit cea2cb1850
4 changed files with 4 additions and 4 deletions

View File

@ -307,7 +307,7 @@ if [ -z "$PLUGIN" -o "$PLUGIN" = "vanilla" ]; then
export OOZIE_HADOOP_V1_DOWNLOAD_URL=${OOZIE_HADOOP_V1_DOWNLOAD_URL:-"http://sahara-files.mirantis.com/oozie-4.0.0.tar.gz"}
export OOZIE_HADOOP_V2_6_DOWNLOAD_URL=${OOZIE_HADOOP_V2_6_DOWNLOAD_URL:-"http://sahara-files.mirantis.com/oozie-4.0.1-hadoop-2.6.0.tar.gz"}
export HADOOP_V2_6_NATIVE_LIBS_DOWNLOAD_URL=${HADOOP_V2_6_NATIVE_LIBS_DOWNLOAD_URL:-"http://sahara-files.mirantis.com/hadoop-native-libs-2.6.0.tar.gz"}
export EXTJS_DOWNLOAD_URL=${EXTJS_DOWNLOAD_URL:-"http://extjs.com/deploy/ext-2.2.zip"}
export EXTJS_DOWNLOAD_URL=${EXTJS_DOWNLOAD_URL:-"http://dev.sencha.com/deploy/ext-2.2.zip"}
export HIVE_VERSION=${HIVE_VERSION:-"0.11.0"}
ubuntu_elements_sequence="base vm ubuntu hadoop oozie mysql hive $JAVA_ELEMENT"

View File

@ -20,7 +20,7 @@ The element can be configured by exporting variables using a
* EXTJS\_DOWNLOAD\_URL
The URL from where to download extjs. Defaults to
``http://extjs.com/deploy/ext-2.2.zip``.
``http://dev.sencha.com/deploy/ext-2.2.zip``.
* EXTJS\_NO\_UNPACK

View File

@ -6,7 +6,7 @@ fi
set -eu
set -o pipefail
EXTJS_DOWNLOAD_URL=${EXTJS_DOWNLOAD_URL:-"http://extjs.com/deploy/ext-2.2.zip"}
EXTJS_DOWNLOAD_URL=${EXTJS_DOWNLOAD_URL:-"http://dev.sencha.com/deploy/ext-2.2.zip"}
extjs_archive=/tmp/$(basename $EXTJS_DOWNLOAD_URL)

View File

@ -6,7 +6,7 @@ fi
set -eu
set -o pipefail
EXTJS_DOWNLOAD_URL=${EXTJS_DOWNLOAD_URL:-"http://extjs.com/deploy/ext-2.2.zip"}
EXTJS_DOWNLOAD_URL=${EXTJS_DOWNLOAD_URL:-"http://dev.sencha.com/deploy/ext-2.2.zip"}
filename=$(basename $EXTJS_DOWNLOAD_URL)
cached_package="$DIB_IMAGE_CACHE/$filename"