Created
July 13, 2015 07:05
-
-
Save yamaaki/85059fa7067f00afeb9b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Vagrant::Config.run do |config| | |
config.vm.define :numpla01 do |cfg| | |
cfg.vm.box = "geerlingguy/centos6" | |
cfg.vm.host_name = "numpla01" | |
cfg.vm.network :hostonly, "192.168.30.10" | |
end | |
config.vm.define :numpla02 do |cfg| | |
cfg.vm.box = "geerlingguy/centos6" | |
cfg.vm.host_name = "numpla02" | |
cfg.vm.network :hostonly, "192.168.30.20" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment