mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-03 20:39:27 -05:00
20 lines
404 B
Ruby
20 lines
404 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
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
|