Mitchell Hashimoto aaeb060f33 vagrant provision
2012-08-14 21:21:31 -07:00

21 lines
509 B
Ruby

module VagrantPlugins
module ProviderVirtualBox
module Action
class IsRunning
def initialize(app, env)
@app = app
end
def call(env)
# Set the result to be true if the machine is running.
env[:result] = env[:machine].state == :running
# 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