<%= def underscore(words) words = words.to_s.dup words.downcase! words.gsub! /[^a-z]/, '_' words end hsh = {} hsh["serial"] = 1 hsh["version"] = 1 clusters = {} gateways = [] global.services['openvpn'].node_list.each_node do |node| next if node.vagrant? gateway = {} gateway["capabilities"] = node.openvpn.pick( :ports, :protocols, :user_ips, :adblock, :filter_dns) gateway["capabilities"]["transport"] = ["openvpn"] gateway["ip_address"] = node.openvpn.gateway_address gateway["host"] = node.domain.full gateway["cluster"] = underscore(node.openvpn.location) gateways << gateway clusters[gateway["cluster"]] ||= { "name" => gateway["cluster"], "label" => {"en" => node.openvpn.location} } end hsh["gateways"] = gateways hsh["clusters"] = clusters.values hsh["openvpn_configuration"] = { "tls-cipher" => "DHE-RSA-AES128-SHA", "auth" => "SHA1", "cipher" => "AES-128-CBC" } generate_json hsh %>