Sha256: d09ba29285e2824c83cd9ffdc368861b7a29543ff2ce2642da1ba6ca4409e225
Contents?: true
Size: 1.67 KB
Versions: 2
Compression:
Stored size: 1.67 KB
Contents
require 'vagrant' module VagrantPlugins module Libvirt class Config < Vagrant.plugin('2', :config) # A hypervisor name to access via Libvirt. attr_accessor :driver # The name of the server, where libvirtd is running. attr_accessor :host # If use ssh tunnel to connect to Libvirt. attr_accessor :connect_via_ssh # The username to access Libvirt. attr_accessor :username # Password for Libvirt connection. attr_accessor :password # Libvirt storage pool name, where box image and instance snapshots will # be stored. attr_accessor :storage_pool_name # Domain specific settings used while creating new domain. attr_accessor :memory attr_accessor :cpus def initialize @driver = UNSET_VALUE @host = UNSET_VALUE @connect_via_ssh = UNSET_VALUE @username = UNSET_VALUE @password = UNSET_VALUE @storage_pool_name = UNSET_VALUE # Domain specific settings. @memory = UNSET_VALUE @cpus = UNSET_VALUE end def finalize! @driver = 'qemu' if @driver == UNSET_VALUE @host = nil if @host == UNSET_VALUE @connect_via_ssh = false if @connect_via_ssh == UNSET_VALUE @username = nil if @username == UNSET_VALUE @password = nil if @password == UNSET_VALUE @storage_pool_name = 'default' if @storage_pool_name == UNSET_VALUE # Domain specific settings. @memory = 512 if @memory == UNSET_VALUE @cpus = 1 if @cpus == UNSET_VALUE end def validate(machine) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vagrant-libvirt-0.0.4 | lib/vagrant-libvirt/config.rb |
vagrant-libvirt-0.0.3 | lib/vagrant-libvirt/config.rb |