diff --git a/example_box/Vagrantfile b/example_box/Vagrantfile index b7ac7ce..4cbb796 100644 --- a/example_box/Vagrantfile +++ b/example_box/Vagrantfile @@ -7,13 +7,25 @@ Vagrant.configure("2") do |config| # #config.vm.define :test_vm do |test_vm| # Box name + # #test_vm.vm.box = "centos64" + # Domain Specific Options + # + # See README for more info. + # + #test_vm.vm.provider :libvirt do |domain| + # domain.memory = 2048 + # domain.cpus = 2 + #end + # Interfaces for VM # - # Hostonly network is not supported in this version of provider. Bridged - # interface with network id specified can be created. - #test_vm.vm.network :bridged, :bridge => "default", :adapter => 1 + # Networking features in the form of `config.vm.network` support private + # networks concept. No public network or port forwarding are supported in + # current version of provider. See README for more info. + # + #test_vm.vm.network :private_network, :ip => '10.20.30.40' #end # Options for libvirt vagrant provider.