vagrant/plugins/providers/hyperv/action/start_instance.rb

18 lines
335 B
Ruby
Raw Normal View History

module VagrantPlugins
module HyperV
module Action
class StartInstance
def initialize(app, env)
@app = app
end
def call(env)
2014-02-26 19:12:24 +00:00
env[:ui].output('Starting the machine...')
env[:machine].provider.driver.start
@app.call(env)
end
end
end
end
end