class Vagrant::Action::Builtin::PrepareClone

Public Class Methods

new(app, env) click to toggle source
# File lib/vagrant/action/builtin/prepare_clone.rb, line 7
def initialize(app, env)
  @app = app
  @logger = Log4r::Logger.new("vagrant::action::vm::prepare_clone")
end

Public Instance Methods

call(env) click to toggle source
# File lib/vagrant/action/builtin/prepare_clone.rb, line 12
def call(env)
  # If we aren't cloning, then do nothing
  if !env[:machine].config.vm.clone
    return @app.call(env)
  end

  # We need to get the machine ID from this Vagrant environment
  clone_env = env[:machine].env.environment(
    env[:machine].config.vm.clone)
  raise Errors::CloneNotFound if !clone_env.root_path

  # Get the machine itself
  clone_machine = clone_env.machine(
    clone_env.primary_machine_name, env[:machine].provider_name)
  raise Errors::CloneMachineNotFound if !clone_machine.id

  # Set the ID of the master so we know what to clone from
  env[:clone_id] = clone_machine.id
  env[:clone_machine] = clone_machine

  # Continue
  @app.call(env)
end