You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whirr.apache.org by as...@apache.org on 2011/08/14 22:30:38 UTC

svn commit: r1157659 - in /incubator/whirr/trunk: CHANGES.txt services/voldemort/src/main/resources/functions/install_voldemort.sh

Author: asavu
Date: Sun Aug 14 20:30:38 2011
New Revision: 1157659

URL: http://svn.apache.org/viewvc?rev=1157659&view=rev
Log:
WHIRR-364. [voldemort] 0.90.RC3 build artifact no longer available (asavu)

Modified:
    incubator/whirr/trunk/CHANGES.txt
    incubator/whirr/trunk/services/voldemort/src/main/resources/functions/install_voldemort.sh

Modified: incubator/whirr/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/whirr/trunk/CHANGES.txt?rev=1157659&r1=1157658&r2=1157659&view=diff
==============================================================================
--- incubator/whirr/trunk/CHANGES.txt (original)
+++ incubator/whirr/trunk/CHANGES.txt Sun Aug 14 20:30:38 2011
@@ -75,6 +75,8 @@ Trunk (unreleased changes)
     WHIRR-363. ComputeCache redundantly creates ComputeServiceContexts 
     (Adrian Cole via asavu)
 
+    WHIRR-364. [voldemort] 0.90.RC3 build artifact no longer available (asavu)
+
 Release 0.5.0 - 2011-05-16
 
   INCOMPATIBLE CHANGES

Modified: incubator/whirr/trunk/services/voldemort/src/main/resources/functions/install_voldemort.sh
URL: http://svn.apache.org/viewvc/incubator/whirr/trunk/services/voldemort/src/main/resources/functions/install_voldemort.sh?rev=1157659&r1=1157658&r2=1157659&view=diff
==============================================================================
--- incubator/whirr/trunk/services/voldemort/src/main/resources/functions/install_voldemort.sh (original)
+++ incubator/whirr/trunk/services/voldemort/src/main/resources/functions/install_voldemort.sh Sun Aug 14 20:30:38 2011
@@ -21,7 +21,7 @@ function download() {
   dest_dir=$2
 
   for i in `seq 1 3`; do
-    curl --retry 3 --show-error --fail -O $tar_url
+    curl -L --retry 3 --show-error --fail -O $tar_url
     if tar zxf $tar_file -C $dest_dir ; then
       break;
     else
@@ -37,8 +37,8 @@ function download() {
 
 # -f <configuration URL> -u <voldemort_tar_url>
 function install_voldemort() {
-  VOLDEMORT_VERSION="0.90.RC3"
-  VOLDEMORT_TAR_URL=http://test.project-voldemort.com:8080/job/release-090/lastSuccessfulBuild/artifact/dist/voldemort-${VOLDEMORT_VERSION}.tar.gz
+  VOLDEMORT_VERSION="0.90"
+  VOLDEMORT_TAR_URL=https://github.com/downloads/voldemort/voldemort/voldemort-${VOLDEMORT_VERSION}.tar.gz
   VOLDEMORT_CONF_URL=
   VOLDEMORT_ROOT=/usr/local/voldemort
   VOLDEMORT_HOME=/etc/voldemort