diff --git a/docs/install/VM/README.txt b/docs/install/VM/README.txt index f3283ca7269..bc1e27e79bc 100644 --- a/docs/install/VM/README.txt +++ b/docs/install/VM/README.txt @@ -29,8 +29,8 @@ The purpose of these scripts is to automate the process of building an OMERO vir DL_LOC stores the URL from which to retrieve our build: DL_LOC="http://url-of-your-download-folder" e.g. - DL_LOC="http://hudson.openmicroscopy.org.uk/job/OMERO-trunk-qa-builds/lastSuccessfulBuild/artifact/" - + DL_LOC="http://hudson.openmicroscopy.org.uk/job/OMERO-trunk/lastSuccessfulBuild/artifact/" + DL_ARCHIVE stores the name of the zip archive to retrieve from DL_LOC because the build process could deploy many archives to that location and we must specify the particular one that we want to retrieve. DL_ARCHIVE="omero.server.archive.zip" e.g. diff --git a/docs/install/VM/setup_omero.sh b/docs/install/VM/setup_omero.sh index a6fb3531ae6..5692850a839 100644 --- a/docs/install/VM/setup_omero.sh +++ b/docs/install/VM/setup_omero.sh @@ -5,7 +5,7 @@ set -e -u -x PGPASSWORD=${PGPASSWORD:-"omero"} TARGET=${TARGET:-"QA"} # NB. Valid args are {QA | RELEASE} URL_RELEASE="http://cvs.openmicroscopy.org.uk/snapshots/omero/" -RELEASE_ARCHIVE="OMERO.server-Beta-4.3.1.zip" +RELEASE_ARCHIVE="OMERO.server-Beta-4.3.4.zip" RELEASE_FOLDER=${RELEASE_ARCHIVE%.zip} DB_VERSION="OMERO4.3" DB_REVISION="0" @@ -23,15 +23,15 @@ else DL_ARCHIVE="" if [ "x$DL_ARCHIVE" == "x" ]; then - URL=`wget -q -O- "http://hudson.openmicroscopy.org.uk/job/OMERO-trunk-qa-builds/lastSuccessfulBuild/api/xml?xpath=/freeStyleBuild/url/text()"` - FILE=`wget -q -O- "http://hudson.openmicroscopy.org.uk/job/OMERO-trunk-qa-builds/lastSuccessfulBuild/api/xml?xpath=//relativePath[contains(.,'server')]/text()"` + URL=`wget -q -O- "http://hudson.openmicroscopy.org.uk/job/OMERO-trunk/lastSuccessfulBuild/api/xml?xpath=/freeStyleBuild/url/text()"` + FILE=`wget -q -O- "http://hudson.openmicroscopy.org.uk/job/OMERO-trunk/lastSuccessfulBuild/api/xml?xpath=//relativePath[contains(.,'server')]/text()"` wget -q "$URL"artifact/$FILE DL_ARCHIVE=$FILE DL_FOLDER=${DL_ARCHIVE%.zip} else - DL_LOC="http://hudson.openmicroscopy.org.uk/job/OMERO-trunk-qa-builds/lastSuccessfulBuild/artifact/" + DL_LOC="http://hudson.openmicroscopy.org.uk/job/OMERO-trunk/lastSuccessfulBuild/artifact/" DL_FOLDER=${DL_ARCHIVE%.zip} wget $DL_LOC$DL_ARCHIVE