Sha256: 69037071b36bc6abe838fe46e19bf03bb5cf2850402924c0d1818d3f04845f78
Contents?: true
Size: 386 Bytes
Versions: 55
Compression:
Stored size: 386 Bytes
Contents
module VagrantPlugins module Parallels module Action class Destroy def initialize(app, env) @app = app end def call(env) env[:ui].info I18n.t("vagrant.actions.vm.destroy.destroying") env[:machine].provider.driver.delete env[:machine].id = nil @app.call(env) end end end end end
Version data entries
55 entries across 55 versions & 1 rubygems