2012-08-04 18:16:31 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module ProviderVirtualBox
|
|
|
|
module Action
|
|
|
|
class DiscardState
|
|
|
|
def initialize(app, env)
|
|
|
|
@app = app
|
|
|
|
end
|
|
|
|
|
|
|
|
def call(env)
|
2014-03-14 23:34:14 +00:00
|
|
|
if env[:machine].state.id == :saved
|
2012-08-04 18:16:31 +00:00
|
|
|
env[:ui].info I18n.t("vagrant.actions.vm.discard_state.discarding")
|
|
|
|
env[:machine].provider.driver.discard_saved_state
|
|
|
|
end
|
|
|
|
|
|
|
|
@app.call(env)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|