Commit 107c450a by Gabe Mulley

Merge pull request #2864 from edx/gabe/change-reference-to-release-box

use dogwood box for release analyticstack Vagrantfile
parents 69b2989d e7a480e3
......@@ -75,6 +75,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
certs_version: ENV['OPENEDX_RELEASE'],
forum_version: ENV['OPENEDX_RELEASE'],
xqueue_version: ENV['OPENEDX_RELEASE'],
ANALYTICS_API_VERSION: ENV['OPENEDX_RELEASE'],
INSIGHTS_VERSION: ENV['OPENEDX_RELEASE'],
}
end
if ENV['CONFIGURATION_VERSION']
......
......@@ -24,6 +24,8 @@ if [ -n "$OPENEDX_RELEASE" ]; then
-e certs_version=$OPENEDX_RELEASE \
-e forum_version=$OPENEDX_RELEASE \
-e xqueue_version=$OPENEDX_RELEASE \
-e ANALYTICS_API_VERSION=$OPENEDX_RELEASE \
-e INSIGHTS_VERSION=$OPENEDX_RELEASE \
"
CONFIG_VER=$OPENEDX_RELEASE
# Need to ensure that the configuration repo is updated
......@@ -61,14 +63,17 @@ end
# a Vagrant box from the internet.
openedx_releases = {
"named-release/dogwood.rc" => {
:name => "analyticstack", :file => "analyticstack.box",
:name => "analyticstack", :file => "dogwood-analyticstack-2016-03-15.box",
},
"named-release/dogwood.1" => {
:name => "analyticstack", :file => "dogwood-analyticstack-2016-03-15.box",
},
"named-release/dogwood" => {
:name => "analyticstack", :file => "analyticstack.box",
:name => "analyticstack", :file => "dogwood-analyticstack-2016-03-15.box",
},
}
openedx_releases.default = {
:name => "analyticstack", :file => "analyticstack.box",
:name => "analyticstack", :file => "analyticstack-latest.box",
}
rel = ENV['OPENEDX_RELEASE']
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment