Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
configuration
Commits
6b742fc2
Commit
6b742fc2
authored
Oct 10, 2014
by
David Baumgold
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make fullstack release Vagrantfile use aspen-rc1 box if requested
parent
4d57878a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
3 deletions
+16
-3
vagrant/release/devstack/Vagrantfile
+1
-1
vagrant/release/fullstack/Vagrantfile
+15
-2
No files found.
vagrant/release/devstack/Vagrantfile
View file @
6b742fc2
...
...
@@ -59,7 +59,7 @@ end
# a Vagrant box from the internet.
openedx_releases
=
{
"openedx/rc/aspen-2014-09-10"
=>
{
:name
=>
"aspen-rc1"
,
:file
=>
"20141009-aspen-devstack-rc1.box"
,
:name
=>
"aspen-
devstack-
rc1"
,
:file
=>
"20141009-aspen-devstack-rc1.box"
,
}
}
openedx_releases
.
default
=
{
...
...
vagrant/release/fullstack/Vagrantfile
View file @
6b742fc2
...
...
@@ -5,11 +5,24 @@ VAGRANTFILE_API_VERSION = "2"
MEMORY
=
2048
CPU_COUNT
=
2
# map the name of the git branch that we use for a release
# to a name and a file path, which are used for retrieving
# a Vagrant box from the internet.
openedx_releases
=
{
"openedx/rc/aspen-2014-09-10"
=>
{
:name
=>
"aspen-fullstack-rc1"
,
:file
=>
"20141010-aspen-fullstack-rc1.box"
,
}
}
openedx_releases
.
default
=
{
:name
=>
"kifli-fullstack"
,
:file
=>
"20140826-kifli-fullstack.box"
}
rel
=
ENV
[
'OPENEDX_RELEASE'
]
Vagrant
.
configure
(
VAGRANTFILE_API_VERSION
)
do
|
config
|
# Creates an edX fullstack VM from an official release
config
.
vm
.
box
=
"kifli-fullstack"
config
.
vm
.
box_url
=
"http://files.edx.org/vagrant-images/
20140826-kifli-fullstack.box
"
config
.
vm
.
box
=
openedx_releases
[
rel
][
:name
]
config
.
vm
.
box_url
=
"http://files.edx.org/vagrant-images/
#{
openedx_releases
[
rel
][
:file
]
}
"
config
.
vm
.
synced_folder
"."
,
"/vagrant"
,
disabled:
true
config
.
ssh
.
insert_key
=
true
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment