vagrant/plugins/providers/virtualbox/action/is_saved.rb

21 lines
506 B
Ruby
Raw Normal View History

2012-08-15 05:38:41 +00:00
module VagrantPlugins
module ProviderVirtualBox
module Action
class IsSaved
def initialize(app, env)
@app = app
end
def call(env)
# Set the result to be true if the machine is saved.
env[:result] = env[:machine].state.id == :saved
2012-08-15 05:38:41 +00:00
# Call the next if we have one (but we shouldn't, since this
# middleware is built to run with the Call-type middlewares)
@app.call(env)
end
end
end
end
end