Sha256: 382e8f71570dc38f576158c52c4305b9838c5a17f9f1a15d04195c47851d035c
Contents?: true
Size: 366 Bytes
Versions: 55
Compression:
Stored size: 366 Bytes
Contents
module VagrantPlugins module Parallels module Action class Boot def initialize(app, env) @app = app end def call(env) @env = env env[:ui].info I18n.t("vagrant.actions.vm.boot.booting") env[:machine].provider.driver.start @app.call(env) end end end end end
Version data entries
55 entries across 55 versions & 1 rubygems