Commit e7a480e3 by Gabe Mulley

use dogwood box for release analyticstack Vagrantfile

parent 253f59a5
...@@ -75,6 +75,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| ...@@ -75,6 +75,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
certs_version: ENV['OPENEDX_RELEASE'], certs_version: ENV['OPENEDX_RELEASE'],
forum_version: ENV['OPENEDX_RELEASE'], forum_version: ENV['OPENEDX_RELEASE'],
xqueue_version: ENV['OPENEDX_RELEASE'], xqueue_version: ENV['OPENEDX_RELEASE'],
ANALYTICS_API_VERSION: ENV['OPENEDX_RELEASE'],
INSIGHTS_VERSION: ENV['OPENEDX_RELEASE'],
} }
end end
if ENV['CONFIGURATION_VERSION'] if ENV['CONFIGURATION_VERSION']
......
...@@ -24,6 +24,8 @@ if [ -n "$OPENEDX_RELEASE" ]; then ...@@ -24,6 +24,8 @@ if [ -n "$OPENEDX_RELEASE" ]; then
-e certs_version=$OPENEDX_RELEASE \ -e certs_version=$OPENEDX_RELEASE \
-e forum_version=$OPENEDX_RELEASE \ -e forum_version=$OPENEDX_RELEASE \
-e xqueue_version=$OPENEDX_RELEASE \ -e xqueue_version=$OPENEDX_RELEASE \
-e ANALYTICS_API_VERSION=$OPENEDX_RELEASE \
-e INSIGHTS_VERSION=$OPENEDX_RELEASE \
" "
CONFIG_VER=$OPENEDX_RELEASE CONFIG_VER=$OPENEDX_RELEASE
# Need to ensure that the configuration repo is updated # Need to ensure that the configuration repo is updated
...@@ -61,14 +63,17 @@ end ...@@ -61,14 +63,17 @@ end
# a Vagrant box from the internet. # a Vagrant box from the internet.
openedx_releases = { openedx_releases = {
"named-release/dogwood.rc" => { "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" => { "named-release/dogwood" => {
:name => "analyticstack", :file => "analyticstack.box", :name => "analyticstack", :file => "dogwood-analyticstack-2016-03-15.box",
}, },
} }
openedx_releases.default = { openedx_releases.default = {
:name => "analyticstack", :file => "analyticstack.box", :name => "analyticstack", :file => "analyticstack-latest.box",
} }
rel = ENV['OPENEDX_RELEASE'] 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