Skip to content

Instantly share code, notes, and snippets.

@chokkoyamada
Last active December 26, 2015 15:59
Show Gist options
  • Save chokkoyamada/7176957 to your computer and use it in GitHub Desktop.
Save chokkoyamada/7176957 to your computer and use it in GitHub Desktop.
simple vagrant config ~/Documents/vagrant ᐅ vagrant --version Vagrant version 1.2.7 ~/Documents/vagrant ᐅ ruby -v ruby 2.0.0p247 (2013-06-27 revision 41674) [x86_64-darwin12.4.0]
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant::configure("2") do |config|
config.vm.define :server do |server|
server.vm.box = "centos63"
server.vm.network :private_network, ip:"192.168.33.11"
end
config.vm.define :client do |client|
client.vm.box = "centos63"
client.vm.network :private_network, ip:"192.168.33.12"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment