Sha256: 46fc0741d59bac215e381e8b52fd3a69f6040f434bf4ddb26b24f2a2f86ac2c2
Contents?: true
Size: 365 Bytes
Versions: 33
Compression:
Stored size: 365 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
33 entries across 33 versions & 1 rubygems