[mapguide-commits] r8601 - branches/3.0/vagrant/scripts

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Sat Mar 28 03:39:29 PDT 2015


Author: jng
Date: 2015-03-28 03:39:29 -0700 (Sat, 28 Mar 2015)
New Revision: 8601

Modified:
   branches/3.0/vagrant/scripts/mginstallcentos.sh
   branches/3.0/vagrant/scripts/mginstallubuntu.sh
Log:
#2520: Allow easier URL component replacement by vagrant files

Modified: branches/3.0/vagrant/scripts/mginstallcentos.sh
===================================================================
--- branches/3.0/vagrant/scripts/mginstallcentos.sh	2015-03-28 10:27:02 UTC (rev 8600)
+++ branches/3.0/vagrant/scripts/mginstallcentos.sh	2015-03-28 10:39:29 UTC (rev 8601)
@@ -1,5 +1,7 @@
 #!/bin/bash
-URL="http://download.osgeo.org/mapguide/releases/3.0.0/Release"
+URL_ROOT="http://download.osgeo.org/mapguide/releases/3.0.0/Beta1"
+URL_PART="centos"
+URL="$URL_ROOT/$URL_PART"
 #URL="http://192.168.0.4/downloads"
 FDOVER_MAJOR_MINOR=4.0
 FDOVER_POINT=0

Modified: branches/3.0/vagrant/scripts/mginstallubuntu.sh
===================================================================
--- branches/3.0/vagrant/scripts/mginstallubuntu.sh	2015-03-28 10:27:02 UTC (rev 8600)
+++ branches/3.0/vagrant/scripts/mginstallubuntu.sh	2015-03-28 10:39:29 UTC (rev 8601)
@@ -1,6 +1,8 @@
 #!/bin/bash
 TEMPDIR=/tmp/build_mapguide
-URL="http://download.osgeo.org/mapguide/releases/3.0.0/Release/ubuntu12"
+URL_ROOT="http://download.osgeo.org/mapguide/releases/3.0.0/Beta1"
+URL_PART="ubuntu12"
+URL="$URL_ROOT/$URL_PART"
 #URL="http://192.168.0.5/downloads/ubuntu12"
 FDOVER_MAJOR_MINOR=4.0
 FDOVER_MAJOR_MINOR_REV=${FDOVER_MAJOR_MINOR}.0



More information about the mapguide-commits mailing list