Sha256: 127ab1932541fd33c0ab4f2048e2e641cf7917d5e194ae16b06f97fad3235ef2
Contents?: true
Size: 1.81 KB
Versions: 1
Compression:
Stored size: 1.81 KB
Contents
module VagrantPlugins module Smartos class Config < Vagrant.plugin("2", :config) # The hypervisor to run VMs on # # @return [String] (username@ipaddress) attr_accessor :hypervisor # The UUID of the image to use # # @return [String] UUID attr_accessor :image_uuid attr_accessor :nic_tag, :ip_address, :subnet_mask, :gateway, :vlan, :ram, :quota def initialize @hypervisor = UNSET_VALUE @image_uuid = UNSET_VALUE @nic_tag = UNSET_VALUE @ip_address = UNSET_VALUE @subnet_mask = UNSET_VALUE @gateway = UNSET_VALUE @vlan = UNSET_VALUE @ram = UNSET_VALUE @quota = UNSET_VALUE @__finalized = false end def finalize! @hypervisor = nil if @hypervisor == UNSET_VALUE @image_uuid = nil if @image_uuid == UNSET_VALUE @nic_tag = "admin" if @nic_tag == UNSET_VALUE @ip_address = "dhcp" if @ip_address == UNSET_VALUE @subnet_mask = nil if @subnet_mask == UNSET_VALUE @gateway = nil if @gateway == UNSET_VALUE @vlan = nil if @vlan == UNSET_VALUE @ram = 256 if @ram == UNSET_VALUE @quota = 5 if @quota == UNSET_VALUE # Mark that we finalized @__finalized = true end def validate(machine) errors = [] errors << I18n.t("vagrant_smartos.config.hypervisor_required") if @hypervisor.nil? errors << I18n.t("vagrant_smartos.config.image_uuid_required") if @image_uuid.nil? unless @ip_address == "dhcp" errors << I18n.t("vagrant_smartos.config.static_netmask_requied") if @subnet_mask.nil? errors << I18n.t("vagrant_smartos.config.static_gateway_required") if @gateway.nil? end { "SmartOS Provider" => errors } end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vagrant-smartos-0.0.2pre1 | lib/vagrant-smartos/config.rb |