2014-02-27 08:12:55 -08:00

19 lines
406 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')
options = { vm_id: env[:machine].id }
env[:machine].provider.driver.execute('stop_vm.ps1', options)
@app.call(env)
end
end
end
end
end