vagrant/plugins/providers/hyperv/action/stop_instance.rb

19 lines
409 B
Ruby
Raw Normal View History

module VagrantPlugins
module HyperV
module Action
class StopInstance
def initialize(app, env)
@app = app
end
def call(env)
env[:ui].info("Stopping the machine..."))
2014-02-16 19:42:20 +00:00
options = { VmId: env[:machine].id }
env[:machine].provider.driver.execute('stop_vm.ps1', options)
@app.call(env)
end
end
end
end
end