Updated Vagrantfile in example box.

This commit is contained in:
pradels 2013-07-10 16:53:41 +02:00
parent 4776846e9e
commit 2edd384f8e

View File

@ -7,13 +7,25 @@ Vagrant.configure("2") do |config|
# #
#config.vm.define :test_vm do |test_vm| #config.vm.define :test_vm do |test_vm|
# Box name # Box name
#
#test_vm.vm.box = "centos64" #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 # Interfaces for VM
# #
# Hostonly network is not supported in this version of provider. Bridged # Networking features in the form of `config.vm.network` support private
# interface with network id specified can be created. # networks concept. No public network or port forwarding are supported in
#test_vm.vm.network :bridged, :bridge => "default", :adapter => 1 # current version of provider. See README for more info.
#
#test_vm.vm.network :private_network, :ip => '10.20.30.40'
#end #end
# Options for libvirt vagrant provider. # Options for libvirt vagrant provider.