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

18 lines
334 B
Ruby
Raw Normal View History

module VagrantPlugins
module HyperV
module Action
class StopInstance
def initialize(app, env)
@app = app
end
def call(env)
2014-02-26 23:54:53 +00:00
env[:ui].info("Stopping the machine...")
env[:machine].provider.driver.stop
@app.call(env)
end
end
end
end
end