Sha256: 21ac9f9af29383d4e48b4783e44a070b1f2a28d54e0d9388ae10b80fed7e35ee
Contents?: true
Size: 372 Bytes
Versions: 32
Compression:
Stored size: 372 Bytes
Contents
module Vagrant module LXC 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.destroy env[:machine].id = nil @app.call env end end end end end
Version data entries
32 entries across 32 versions & 2 rubygems