Sha256: 738fefce3c91ad8cb46e6a127bcdf8c703ea23871752efb6fa02556ec43564ea
Contents?: true
Size: 349 Bytes
Versions: 41
Compression:
Stored size: 349 Bytes
Contents
module Vagrant class Action module VM class Destroy def initialize(app, env) @app = app end def call(env) env.ui.info I18n.t("vagrant.actions.vm.destroy.destroying") env["vm"].vm.destroy env["vm"].vm = nil @app.call(env) end end end end end
Version data entries
41 entries across 41 versions & 5 rubygems