Sha256: 3b756a15bdbb1a245a0983f6800bc89d181cb7a2ae18d4809ce5f47b4a28c943
Contents?: true
Size: 332 Bytes
Versions: 34
Compression:
Stored size: 332 Bytes
Contents
module VagrantPlugins module HyperV module Action class DeleteVM def initialize(app, env) @app = app end def call(env) env[:ui].info("Deleting the machine...") env[:machine].provider.driver.delete_vm @app.call(env) end end end end end
Version data entries
34 entries across 31 versions & 6 rubygems