Sha256: d80d79ffc93fc1ae782d3ad340390f3b335e2826be13540d82314cd55340e2c8
Contents?: true
Size: 480 Bytes
Versions: 43
Compression:
Stored size: 480 Bytes
Contents
module Vagrant class Action module Box class Verify def initialize(app, env) @app = app @env = env end def call(env) begin env.ui.info I18n.t("vagrant.actions.box.verify.verifying") VirtualBox::Appliance.new(env["box"].ovf_file.to_s) rescue Exception raise Errors::BoxVerificationFailed end @app.call(env) end end end end end
Version data entries
43 entries across 43 versions & 5 rubygems