Sha256: 1ac32423b27c2d4d755a41b1f1a729df0f6bd3c44d25b562ff66e71c9cea24e8
Contents?: true
Size: 500 Bytes
Versions: 40
Compression:
Stored size: 500 Bytes
Contents
module Vagrant module Action module Box class Verify def initialize(app, env) @app = app @env = env end def call(env) @env[:ui].info I18n.t("vagrant.actions.box.verify.verifying") driver = Driver::VirtualBox.new(nil) if !driver.verify_image(env["box_directory"].join("box.ovf").to_s) raise Errors::BoxVerificationFailed end @app.call(env) end end end end end
Version data entries
40 entries across 40 versions & 6 rubygems