Sha256: 695402509fa0a97d617926707671373c14242c5337aec792608b0d1dffe52947
Contents?: true
Size: 334 Bytes
Versions: 63
Compression:
Stored size: 334 Bytes
Contents
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
Version data entries
63 entries across 56 versions & 8 rubygems