Skip to content
Snippets Groups Projects
Commit 6ee66790 authored by John-Paul Robinson's avatar John-Paul Robinson
Browse files

Merge branch 'feat-change-vagrant-box-to-pristine-centos' into 'master'

Feat change vagrant box to pristine centos to simplify tracking upstream releases by using upstream maintained vagrant box.

See merge request jpr/ohpc_vagrant!12
parents b3e0d494 63866d22
No related branches found
No related tags found
No related merge requests found
...@@ -7,16 +7,14 @@ Vagrant.configure("2") do |config| ...@@ -7,16 +7,14 @@ Vagrant.configure("2") do |config|
config.ssh.insert_key = false config.ssh.insert_key = false
config.vm.define "ohpc" do |ohpc| config.vm.define "ohpc" do |ohpc|
ohpc.vm.box = "ravi89/centos7.5" ohpc.vm.box = "centos/7"
ohpc.vm.box_version = "1"
ohpc.vm.hostname = "ohpc" ohpc.vm.hostname = "ohpc"
ohpc.vm.network "private_network", ip: "10.1.1.1", virtualbox__intnet: "compute" ohpc.vm.network "private_network", ip: "10.1.1.1", virtualbox__intnet: "compute"
#ohpc.vm.customize ["modifyvm", :id, "--name", "ohpc"] #ohpc.vm.customize ["modifyvm", :id, "--name", "ohpc"]
end end
config.vm.define "ood" do |ood| config.vm.define "ood" do |ood|
ood.vm.box = "ravi89/centos7.5" ood.vm.box = "centos/7"
ood.vm.box_version = "1"
ood.vm.hostname = "ood" ood.vm.hostname = "ood"
ood.vm.network "private_network", ip: "10.1.1.254", virtualbox__intnet: "compute" ood.vm.network "private_network", ip: "10.1.1.254", virtualbox__intnet: "compute"
ood.vm.network "forwarded_port", guest: 80, host: 8080, ood.vm.network "forwarded_port", guest: 80, host: 8080,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment