2012-11-07 05:28:44 +00:00
|
|
|
require "pathname"
|
|
|
|
|
|
|
|
require "vagrant"
|
|
|
|
|
2012-11-08 04:38:41 +00:00
|
|
|
require File.expand_path("../vm_provider", __FILE__)
|
2012-11-07 05:28:44 +00:00
|
|
|
require File.expand_path("../vm_provisioner", __FILE__)
|
|
|
|
require File.expand_path("../vm_subvm", __FILE__)
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module Kernel_V2
|
|
|
|
class VMConfig < Vagrant.plugin("2", :config)
|
|
|
|
DEFAULT_VM_NAME = :default
|
|
|
|
|
|
|
|
attr_accessor :base_mac
|
2012-11-15 03:59:18 +00:00
|
|
|
attr_accessor :box
|
|
|
|
attr_accessor :box_url
|
|
|
|
attr_accessor :guest
|
2012-11-07 05:28:44 +00:00
|
|
|
attr_accessor :host_name
|
2013-01-11 22:44:27 +00:00
|
|
|
attr_accessor :usable_port_range
|
2012-11-07 05:28:44 +00:00
|
|
|
attr_reader :forwarded_ports
|
|
|
|
attr_reader :shared_folders
|
|
|
|
attr_reader :networks
|
2012-11-08 04:38:41 +00:00
|
|
|
attr_reader :providers
|
2012-11-07 05:28:44 +00:00
|
|
|
attr_reader :provisioners
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
@forwarded_ports = []
|
|
|
|
@shared_folders = {}
|
|
|
|
@networks = []
|
|
|
|
@provisioners = []
|
2012-12-23 19:02:51 +00:00
|
|
|
|
|
|
|
# The providers hash defaults any key to a provider object
|
|
|
|
@providers = Hash.new do |hash, key|
|
|
|
|
hash[key] = VagrantConfigProvider.new(key, nil)
|
|
|
|
end
|
2012-11-07 05:28:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# Custom merge method since some keys here are merged differently.
|
|
|
|
def merge(other)
|
|
|
|
result = super
|
|
|
|
result.instance_variable_set(:@forwarded_ports, @forwarded_ports + other.forwarded_ports)
|
|
|
|
result.instance_variable_set(:@shared_folders, @shared_folders.merge(other.shared_folders))
|
|
|
|
result.instance_variable_set(:@networks, @networks + other.networks)
|
|
|
|
result.instance_variable_set(:@provisioners, @provisioners + other.provisioners)
|
|
|
|
result
|
|
|
|
end
|
|
|
|
|
|
|
|
def share_folder(name, guestpath, hostpath, opts=nil)
|
|
|
|
@shared_folders[name] = {
|
|
|
|
:guestpath => guestpath.to_s,
|
|
|
|
:hostpath => hostpath.to_s,
|
|
|
|
:create => false,
|
|
|
|
:owner => nil,
|
|
|
|
:group => nil,
|
|
|
|
:nfs => false,
|
|
|
|
:transient => false,
|
|
|
|
:extra => nil
|
|
|
|
}.merge(opts || {})
|
|
|
|
end
|
|
|
|
|
2013-01-05 01:48:54 +00:00
|
|
|
# Define a way to access the machine via a network. This exposes a
|
|
|
|
# high-level abstraction for networking that may not directly map
|
|
|
|
# 1-to-1 for every provider. For example, AWS has no equivalent to
|
|
|
|
# "port forwarding." But most providers will attempt to implement this
|
|
|
|
# in a way that behaves similarly.
|
|
|
|
#
|
|
|
|
# `type` can be one of:
|
|
|
|
#
|
|
|
|
# * `:forwarded_port` - A port that is accessible via localhost
|
|
|
|
# that forwards into the machine.
|
|
|
|
# * `:private_network` - The machine gets an IP that is not directly
|
|
|
|
# publicly accessible, but ideally accessible from this machine.
|
|
|
|
# * `:public_network` - The machine gets an IP on a shared network.
|
|
|
|
#
|
|
|
|
# @param [Symbol] type Type of network
|
2012-11-07 05:28:44 +00:00
|
|
|
def network(type, *args)
|
|
|
|
@networks << [type, args]
|
|
|
|
end
|
|
|
|
|
2012-11-08 04:38:41 +00:00
|
|
|
# Configures a provider for this VM.
|
|
|
|
#
|
|
|
|
# @param [Symbol] name The name of the provider.
|
2012-11-19 06:55:30 +00:00
|
|
|
def provider(name, &block)
|
|
|
|
# TODO: Error if a provider is defined multiple times.
|
|
|
|
@providers[name] = VagrantConfigProvider.new(name, block)
|
2012-11-08 04:38:41 +00:00
|
|
|
end
|
|
|
|
|
2012-11-07 05:28:44 +00:00
|
|
|
def provision(name, options=nil, &block)
|
|
|
|
@provisioners << VagrantConfigProvisioner.new(name, options, &block)
|
|
|
|
end
|
|
|
|
|
|
|
|
def defined_vms
|
|
|
|
@defined_vms ||= {}
|
|
|
|
end
|
|
|
|
|
|
|
|
# This returns the keys of the sub-vms in the order they were
|
|
|
|
# defined.
|
|
|
|
def defined_vm_keys
|
|
|
|
@defined_vm_keys ||= []
|
|
|
|
end
|
|
|
|
|
|
|
|
def define(name, options=nil, &block)
|
|
|
|
name = name.to_sym
|
|
|
|
options ||= {}
|
|
|
|
|
|
|
|
# Add the name to the array of VM keys. This array is used to
|
|
|
|
# preserve the order in which VMs are defined.
|
|
|
|
defined_vm_keys << name
|
|
|
|
|
|
|
|
# Add the SubVM to the hash of defined VMs
|
|
|
|
if !defined_vms[name]
|
|
|
|
defined_vms[name] ||= VagrantConfigSubVM.new
|
|
|
|
end
|
|
|
|
|
|
|
|
defined_vms[name].options.merge!(options)
|
|
|
|
defined_vms[name].push_proc(&block) if block
|
|
|
|
end
|
|
|
|
|
|
|
|
def finalize!
|
|
|
|
# If we haven't defined a single VM, then we need to define a
|
|
|
|
# default VM which just inherits the rest of the configuration.
|
|
|
|
define(DEFAULT_VM_NAME) if defined_vm_keys.empty?
|
|
|
|
end
|
|
|
|
|
2013-01-18 20:33:37 +00:00
|
|
|
def validate(env)
|
|
|
|
errors = []
|
|
|
|
errors << I18n.t("vagrant.config.vm.box_missing") if !box
|
|
|
|
errors << I18n.t("vagrant.config.vm.box_not_found", :name => box) if \
|
|
|
|
box && !box_url && !env.boxes.find(box, :virtualbox)
|
|
|
|
errors << I18n.t("vagrant.config.vm.base_mac_invalid") if \
|
|
|
|
env.boxes.find(box, :virtualbox) && !base_mac
|
2012-11-07 05:28:44 +00:00
|
|
|
|
|
|
|
shared_folders.each do |name, options|
|
|
|
|
hostpath = Pathname.new(options[:hostpath]).expand_path(env.root_path)
|
|
|
|
|
|
|
|
if !hostpath.directory? && !options[:create]
|
2013-01-18 20:33:37 +00:00
|
|
|
errors << I18n.t("vagrant.config.vm.shared_folder_hostpath_missing",
|
2012-11-07 05:28:44 +00:00
|
|
|
:name => name,
|
2013-01-18 20:33:37 +00:00
|
|
|
:path => options[:hostpath])
|
2012-11-07 05:28:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
if options[:nfs] && (options[:owner] || options[:group])
|
|
|
|
# Owner/group don't work with NFS
|
2013-01-18 20:33:37 +00:00
|
|
|
errors << I18n.t("vagrant.config.vm.shared_folder_nfs_owner_group",
|
|
|
|
:name => name)
|
2012-11-07 05:28:44 +00:00
|
|
|
end
|
|
|
|
end
|
2013-01-18 20:33:37 +00:00
|
|
|
|
|
|
|
{ "vm" => errors }
|
2012-11-07 05:28:44 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|