Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
John-Paul Robinson
ohpc_vagrant
Commits
929bb5d3
Commit
929bb5d3
authored
Oct 01, 2018
by
John-Paul Robinson
Browse files
Merge branch '3-feature-add-support-for-ood' into 'master'
Resolve "feature: add support for ood" Closes
#3
See merge request
!6
parents
2f0d1863
6493bce4
Changes
2
Hide whitespace changes
Inline
Side-by-side
CRI_XCBC
@
2fa0b835
Compare
afc39c31
...
2fa0b835
Subproject commit
afc39c31824dbde2f28f40b0a35fa5f2f28046ff
Subproject commit
2fa0b835745ec05e2b61e737a1723a0bffeaedd4
Vagrantfile
View file @
929bb5d3
...
@@ -11,6 +11,18 @@ Vagrant.configure("2") do |config|
...
@@ -11,6 +11,18 @@ Vagrant.configure("2") do |config|
#ohpc.vm.customize ["modifyvm", :id, "--name", "ohpc"]
#ohpc.vm.customize ["modifyvm", :id, "--name", "ohpc"]
end
end
config
.
vm
.
define
"ood"
do
|
ood
|
ood
.
vm
.
box
=
"ravi89/centos7.5"
ood
.
vm
.
box_version
=
"1"
ood
.
vm
.
hostname
=
"ood"
ood
.
vm
.
network
"private_network"
,
ip:
"10.1.1.254"
,
virtualbox__intnet:
"compute"
ood
.
vm
.
network
"forwarded_port"
,
guest:
80
,
host:
8080
,
auto_correct:
true
ood
.
vm
.
network
"forwarded_port"
,
guest:
443
,
host:
8443
,
auto_correct:
true
end
config
.
vm
.
provider
:virtualbox
do
|
vb
|
config
.
vm
.
provider
:virtualbox
do
|
vb
|
vb
.
customize
[
"modifyvm"
,
:id
,
"--natdnshostresolver1"
,
"on"
]
vb
.
customize
[
"modifyvm"
,
:id
,
"--natdnshostresolver1"
,
"on"
]
vb
.
memory
=
"2048"
vb
.
memory
=
"2048"
...
...
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