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
OpenEdx
configuration
Commits
021c8578
Commit
021c8578
authored
7 years ago
by
Joseph Mulloy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Switch vagrant files from 12.04 to 16.04 OPS-1849
parent
b5e912fa
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
6 additions
and
38 deletions
+6
-38
vagrant/base/analyticstack/Vagrantfile
+0
-4
vagrant/base/cluster/Vagrantfile
+2
-2
vagrant/base/devstack/Vagrantfile
+0
-4
vagrant/base/fullstack/Vagrantfile
+0
-4
vagrant/base/test_playbook/Vagrantfile
+2
-6
vagrant/base/test_role/Vagrantfile
+2
-6
vagrant/release/analyticstack/Vagrantfile
+0
-4
vagrant/release/devstack/Vagrantfile
+0
-4
vagrant/release/fullstack/Vagrantfile
+0
-4
No files found.
vagrant/base/analyticstack/Vagrantfile
View file @
021c8578
...
...
@@ -66,10 +66,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config
.
vm
.
provider
:virtualbox
do
|
vb
|
vb
.
customize
[
"modifyvm"
,
:id
,
"--memory"
,
MEMORY
.
to_s
]
vb
.
customize
[
"modifyvm"
,
:id
,
"--cpus"
,
CPU_COUNT
.
to_s
]
# Allow DNS to work for Ubuntu 12.10 host
# http://askubuntu.com/questions/238040/how-do-i-fix-name-service-for-vagrant-client
vb
.
customize
[
"modifyvm"
,
:id
,
"--natdnshostresolver1"
,
"on"
]
end
...
...
This diff is collapsed.
Click to expand it.
vagrant/base/cluster/Vagrantfile
View file @
021c8578
...
...
@@ -20,8 +20,8 @@ SCRIPT
Vagrant
.
configure
(
VAGRANTFILE_API_VERSION
)
do
|
config
|
config
.
vm
.
box
=
"
precise
64"
config
.
vm
.
box_url
=
"http://files.vagrantup.com/
precise
64.box"
config
.
vm
.
box
=
"
xenial
64"
config
.
vm
.
box_url
=
"http://files.vagrantup.com/
xenial
64.box"
# Turn off shared folders
#config.vm.synced_folder ".", "/vagrant", id: "vagrant-root", disabled: true
...
...
This diff is collapsed.
Click to expand it.
vagrant/base/devstack/Vagrantfile
View file @
021c8578
...
...
@@ -65,10 +65,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config
.
vm
.
provider
:virtualbox
do
|
vb
|
vb
.
customize
[
"modifyvm"
,
:id
,
"--memory"
,
MEMORY
.
to_s
]
vb
.
customize
[
"modifyvm"
,
:id
,
"--cpus"
,
CPU_COUNT
.
to_s
]
# Allow DNS to work for Ubuntu 12.10 host
# http://askubuntu.com/questions/238040/how-do-i-fix-name-service-for-vagrant-client
vb
.
customize
[
"modifyvm"
,
:id
,
"--natdnshostresolver1"
,
"on"
]
end
# Make LC_ALL default to en_US.UTF-8 instead of en_US.
...
...
This diff is collapsed.
Click to expand it.
vagrant/base/fullstack/Vagrantfile
View file @
021c8578
...
...
@@ -39,10 +39,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config
.
vm
.
provider
:virtualbox
do
|
vb
|
vb
.
customize
[
"modifyvm"
,
:id
,
"--memory"
,
MEMORY
.
to_s
]
vb
.
customize
[
"modifyvm"
,
:id
,
"--cpus"
,
CPU_COUNT
.
to_s
]
# Allow DNS to work for Ubuntu 12.10 host
# http://askubuntu.com/questions/238040/how-do-i-fix-name-service-for-vagrant-client
vb
.
customize
[
"modifyvm"
,
:id
,
"--natdnshostresolver1"
,
"on"
]
end
# Make LC_ALL default to en_US.UTF-8 instead of en_US.
...
...
This diff is collapsed.
Click to expand it.
vagrant/base/test_playbook/Vagrantfile
View file @
021c8578
...
...
@@ -7,8 +7,8 @@ CPU_COUNT = 2
Vagrant
.
configure
(
"2"
)
do
|
config
|
config
.
vm
.
box
=
"
precise
64"
config
.
vm
.
box_url
=
"http://files.vagrantup.com/
precise
64.box"
config
.
vm
.
box
=
"
xenial
64"
config
.
vm
.
box_url
=
"http://files.vagrantup.com/
xenial
64.box"
config
.
vm
.
network
:private_network
,
ip:
"192.168.33.20"
config
.
vm
.
network
:forwarded_port
,
guest:
8080
,
host:
8080
...
...
@@ -18,10 +18,6 @@ Vagrant.configure("2") do |config|
# You can adjust this to the amount of CPUs your system has available
vb
.
customize
[
"modifyvm"
,
:id
,
"--cpus"
,
CPU_COUNT
.
to_s
]
# Allow DNS to work for Ubuntu 12.10 host
# http://askubuntu.com/questions/238040/how-do-i-fix-name-service-for-vagrant-client
vb
.
customize
[
"modifyvm"
,
:id
,
"--natdnshostresolver1"
,
"on"
]
end
config
.
vm
.
provision
:ansible
do
|
ansible
|
...
...
This diff is collapsed.
Click to expand it.
vagrant/base/test_role/Vagrantfile
View file @
021c8578
...
...
@@ -4,8 +4,8 @@ CPU_COUNT = 2
Vagrant
.
configure
(
"2"
)
do
|
config
|
config
.
vm
.
box
=
"
precise
64"
config
.
vm
.
box_url
=
"http://files.vagrantup.com/
precise
64.box"
config
.
vm
.
box
=
"
xenial
64"
config
.
vm
.
box_url
=
"http://files.vagrantup.com/
xenial
64.box"
config
.
vm
.
network
:private_network
,
ip:
"192.168.33.20"
config
.
vm
.
network
:forwarded_port
,
guest:
8080
,
host:
8080
...
...
@@ -15,10 +15,6 @@ Vagrant.configure("2") do |config|
# You can adjust this to the amount of CPUs your system has available
vb
.
customize
[
"modifyvm"
,
:id
,
"--cpus"
,
CPU_COUNT
.
to_s
]
# Allow DNS to work for Ubuntu 12.10 host
# http://askubuntu.com/questions/238040/how-do-i-fix-name-service-for-vagrant-client
vb
.
customize
[
"modifyvm"
,
:id
,
"--natdnshostresolver1"
,
"on"
]
end
config
.
vm
.
provision
:ansible
do
|
ansible
|
...
...
This diff is collapsed.
Click to expand it.
vagrant/release/analyticstack/Vagrantfile
View file @
021c8578
...
...
@@ -159,10 +159,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
vb
.
customize
[
"modifyvm"
,
:id
,
"--memory"
,
MEMORY
.
to_s
]
vb
.
customize
[
"modifyvm"
,
:id
,
"--cpus"
,
CPU_COUNT
.
to_s
]
# Allow DNS to work for Ubuntu 12.10 host
# http://askubuntu.com/questions/238040/how-do-i-fix-name-service-for-vagrant-client
vb
.
customize
[
"modifyvm"
,
:id
,
"--natdnshostresolver1"
,
"on"
]
# Virtio is faster, but the box needs to have support for it. We didn't
# have support in the boxes before Ficus.
if
!
(
boxname
.
include?
(
"dogwood"
)
||
boxname
.
include?
(
"eucalyptus"
))
...
...
This diff is collapsed.
Click to expand it.
vagrant/release/devstack/Vagrantfile
View file @
021c8578
...
...
@@ -160,10 +160,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
vb
.
customize
[
"modifyvm"
,
:id
,
"--memory"
,
MEMORY
.
to_s
]
vb
.
customize
[
"modifyvm"
,
:id
,
"--cpus"
,
CPU_COUNT
.
to_s
]
# Allow DNS to work for Ubuntu 12.10 host
# http://askubuntu.com/questions/238040/how-do-i-fix-name-service-for-vagrant-client
vb
.
customize
[
"modifyvm"
,
:id
,
"--natdnshostresolver1"
,
"on"
]
# Virtio is faster, but the box needs to have support for it. We didn't
# have support in the boxes before Ficus.
if
!
(
boxname
.
include?
(
"dogwood"
)
||
boxname
.
include?
(
"eucalyptus"
))
...
...
This diff is collapsed.
Click to expand it.
vagrant/release/fullstack/Vagrantfile
View file @
021c8578
...
...
@@ -72,10 +72,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
vb
.
customize
[
"modifyvm"
,
:id
,
"--memory"
,
MEMORY
.
to_s
]
vb
.
customize
[
"modifyvm"
,
:id
,
"--cpus"
,
CPU_COUNT
.
to_s
]
# Allow DNS to work for Ubuntu 12.10 host
# http://askubuntu.com/questions/238040/how-do-i-fix-name-service-for-vagrant-client
vb
.
customize
[
"modifyvm"
,
:id
,
"--natdnshostresolver1"
,
"on"
]
# Virtio is faster, but the box needs to have support for it. We didn't
# have support in the boxes before Ficus.
if
!
(
boxname
.
include?
(
"dogwood"
)
||
boxname
.
include?
(
"eucalyptus"
))
...
...
This diff is collapsed.
Click to expand it.
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