42 lines
1.1 KiB
Ruby
42 lines
1.1 KiB
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
require "log4r"
|
|
|
|
module Vagrant
|
|
module Action
|
|
module Builtin
|
|
class PrepareClone
|
|
def initialize(app, env)
|
|
@app = app
|
|
@logger = Log4r::Logger.new("vagrant::action::vm::prepare_clone")
|
|
end
|
|
|
|
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
|
|
end
|
|
end
|
|
end
|
|
end
|