40 lines
883 B
Ruby
40 lines
883 B
Ruby
|
require "fileutils"
|
||
|
|
||
|
module VagrantPlugins
|
||
|
module HyperV
|
||
|
module Action
|
||
|
class Export
|
||
|
def initialize(app, env)
|
||
|
@app = app
|
||
|
end
|
||
|
|
||
|
def call(env)
|
||
|
@env = env
|
||
|
|
||
|
@env[:ui].info @env[:machine].state.id.to_s
|
||
|
|
||
|
raise Vagrant::Errors::VMPowerOffToPackage if
|
||
|
@env[:machine].state.id != :off
|
||
|
|
||
|
export
|
||
|
|
||
|
@app.call(env)
|
||
|
end
|
||
|
|
||
|
def export
|
||
|
@env[:ui].info I18n.t("vagrant.actions.vm.export.exporting")
|
||
|
@env[:machine].provider.driver.export(@env["export.temp_dir"]) do |progress|
|
||
|
@env[:ui].clear_line
|
||
|
@env[:ui].report_progress(progress.percent, 100, false)
|
||
|
end
|
||
|
|
||
|
# Clear the line a final time so the next data can appear
|
||
|
# alone on the line.
|
||
|
@env[:ui].clear_line
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|