21 lines
403 B
Ruby
21 lines
403 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
module VagrantPlugins
|
|
module HyperV
|
|
module Action
|
|
class StopInstance
|
|
def initialize(app, env)
|
|
@app = app
|
|
end
|
|
|
|
def call(env)
|
|
env[:ui].info("Stopping the machine...")
|
|
env[:machine].provider.driver.stop
|
|
@app.call(env)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|