Sha256: 84082e747e0d46c9c813118f59564b62228e0e97af99dd367db23baf59f3f4b7

Contents?: true

Size: 1.41 KB

Versions: 16

Compression:

Stored size: 1.41 KB

Contents

# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure("2") do |config|

  # Example configuration of new VM..
  # 
  #config.vm.define :test_vm do |test_vm|
    # Box name
    #test_vm.vm.box = "centos64"

    # 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
  #end

  # Options for libvirt vagrant provider.
  config.vm.provider :libvirt do |libvirt|

    # A hypervisor name to access. Different drivers can be specified, but
    # this version of provider creates KVM machines only. Some examples of
    # drivers are qemu (KVM/qemu), xen (Xen hypervisor), lxc (Linux Containers),
    # esx (VMware ESX), vmwarews (VMware Workstation) and more. Refer to
    # documentation for available drivers (http://libvirt.org/drivers.html).
    #libvirt.driver = "qemu"

    # The name of the server, where libvirtd is running.
    #libvirt.host = "localhost"

    # If use ssh tunnel to connect to Libvirt.
    #libvirt.connect_via_ssh = false

    # The username and password to access Libvirt. Password is not used when
    # connecting via ssh.
    #libvirt.username = "root"
    #libvirt.password = "secret"

    # Libvirt storage pool name, where box image and instance snapshots will
    # be stored.
    #libvirt.storage_pool_name = "default"
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
veewee-0.5.0.alpha4 lib/veewee/provider/kvm/templates/Vagrantfile
veewee-0.5.0.alpha3 lib/veewee/provider/kvm/templates/Vagrantfile
veewee-0.5.0.alpha2 lib/veewee/provider/kvm/templates/Vagrantfile
veewee-0.5.0.alpha1 lib/veewee/provider/kvm/templates/Vagrantfile
veewee-0.4.5.1 lib/veewee/provider/kvm/templates/Vagrantfile
veewee-0.4.5 lib/veewee/provider/kvm/templates/Vagrantfile
veewee-0.4.5.pre1 lib/veewee/provider/kvm/templates/Vagrantfile
veewee-0.4.4 lib/veewee/provider/kvm/templates/Vagrantfile
veewee-0.4.3 lib/veewee/provider/kvm/templates/Vagrantfile
veewee-0.4.2 lib/veewee/provider/kvm/templates/Vagrantfile
veewee-0.4.1 lib/veewee/provider/kvm/templates/Vagrantfile
veewee-0.4.0 lib/veewee/provider/kvm/templates/Vagrantfile
veewee-0.3.12 lib/veewee/provider/kvm/templates/Vagrantfile
veewee-0.3.11 lib/veewee/provider/kvm/templates/Vagrantfile
veewee-0.3.10 lib/veewee/provider/kvm/templates/Vagrantfile
veewee-0.3.9 lib/veewee/provider/kvm/templates/Vagrantfile