Sha256: 91691fcbdcc6c26eb3c7d8f66991f3a8d78d74d7fe90e9fee61f1cd4c9d54452
Contents?: true
Size: 817 Bytes
Versions: 240
Compression:
Stored size: 817 Bytes
Contents
require 'json' class Puppet::Network::HTTP::API::Master::V3::Environments def initialize(env_loader) @env_loader = env_loader end def call(request, response) response.respond_with(200, "application/json", JSON.dump({ "search_paths" => @env_loader.search_paths, "environments" => Hash[@env_loader.list.collect do |env| [env.name, { "settings" => { "modulepath" => env.full_modulepath, "manifest" => env.manifest, "environment_timeout" => timeout(env), "config_version" => env.config_version || '', } }] end] })) end private def timeout(env) ttl = @env_loader.get_conf(env.name).environment_timeout if ttl == Float::INFINITY "unlimited" else ttl end end end
Version data entries
240 entries across 240 versions & 3 rubygems