Sha256: cedef462027113cb267b17bd540280058edbc7ba121098d2dda2a199d695f1aa
Contents?: true
Size: 761 Bytes
Versions: 4
Compression:
Stored size: 761 Bytes
Contents
module VagrantPlugins module VCloudAir module Action class IsLastVM def initialize(app, env) @app = app end def call(env) cfg = env[:machine].provider_config cnx = cfg.vcloudair_cnx.driver vapp_id = env[:machine].get_vapp_id test_vapp = cnx.get_vapp(vapp_id) if test_vapp[:vms_hash].count == 1 # Set the result to be true if the machine is running. env[:result] = true else env[:result] = false end # 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
Version data entries
4 entries across 4 versions & 1 rubygems