You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by ta...@apache.org on 2019/10/21 20:13:13 UTC

[impala] 01/02: IMPALA-9061: Update ant version for centos in bootstrap_system.sh

This is an automated email from the ASF dual-hosted git repository.

tarmstrong pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git

commit 12007e1ac3ea5c85fc29e51c6a081d90ebd8d225
Author: Fucun Chu <ch...@hotmail.com>
AuthorDate: Thu Oct 17 15:41:34 2019 +0800

    IMPALA-9061: Update ant version for centos in bootstrap_system.sh
    
    bootstrap_system.sh currently use ant 1.9.13 on CentOS/Redhat environment.
    this release cannot be accessed, the earliest version was 1.9.14.
    please see https://www-us.apache.org/dist/ant/binaries/.
    upgrade version to 1.9.14
    
    Change-Id: I1dc224e7afb16f95abc9262f094c4ff7aa465dfb
    Reviewed-on: http://gerrit.cloudera.org:8080/14482
    Tested-by: Impala Public Jenkins <im...@cloudera.com>
    Reviewed-by: Tim Armstrong <ta...@cloudera.com>
---
 bin/bootstrap_system.sh | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/bin/bootstrap_system.sh b/bin/bootstrap_system.sh
index d2a7860..c6ef1d1 100755
--- a/bin/bootstrap_system.sh
+++ b/bin/bootstrap_system.sh
@@ -237,10 +237,10 @@ redhat sudo yum clean all
 
 # Download ant for centos
 redhat sudo wget -nv \
-  https://www-us.apache.org/dist/ant/binaries/apache-ant-1.9.13-bin.tar.gz
-redhat sha512sum -c - <<< 'c8321aa223f70d7e64d3d0274263000cfffb46fbea61488534e26f9f0245d99e9872d0888e35cd3274416392a13f80c748c07750caaeffa5f9cae1220020715f  apache-ant-1.9.13-bin.tar.gz'
-redhat sudo tar -C /usr/local -xzf apache-ant-1.9.13-bin.tar.gz
-redhat sudo ln -s /usr/local/apache-ant-1.9.13/bin/ant /usr/local/bin
+  https://www-us.apache.org/dist/ant/binaries/apache-ant-1.9.14-bin.tar.gz
+redhat sha512sum -c - <<< '487dbd1d7f678a92924ba884a57e910ccb4fe565c554278795a8fdfc80c4e88d81ebc2ccecb5a8f353f0b2076572bb921499a2cadb064e0f44fc406a3c31da20  apache-ant-1.9.14-bin.tar.gz'
+redhat sudo tar -C /usr/local -xzf apache-ant-1.9.14-bin.tar.gz
+redhat sudo ln -s /usr/local/apache-ant-1.9.14/bin/ant /usr/local/bin
 
 # Download maven for all OSes, since the OS-packaged version can be
 # pretty old.