mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-21 00:42:33 -05:00
17 lines
334 B
Ruby
17 lines
334 B
Ruby
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
|