18 lines
335 B
Ruby
18 lines
335 B
Ruby
module VagrantPlugins
|
|
module HyperV
|
|
module Action
|
|
class StartInstance
|
|
def initialize(app, env)
|
|
@app = app
|
|
end
|
|
|
|
def call(env)
|
|
env[:ui].output('Starting the machine...')
|
|
env[:machine].provider.driver.start
|
|
@app.call(env)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|