From: elijah Date: Thu, 30 May 2013 19:19:05 +0000 (-0700) Subject: remove hardcoded environments from test.rb X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=407282d3730a64c8395e3a05822b49f7e4ce4793;p=leap%2Fleap_cli.git remove hardcoded environments from test.rb --- diff --git a/lib/leap_cli/commands/test.rb b/lib/leap_cli/commands/test.rb index 79271be..8fe6e11 100644 --- a/lib/leap_cli/commands/test.rb +++ b/lib/leap_cli/commands/test.rb @@ -28,7 +28,8 @@ module LeapCli; module Commands assert_config! 'provider.ca.client_certificates.unlimited_prefix' assert_config! 'provider.ca.client_certificates.limited_prefix' template = read_file! Path.find_file(:test_client_openvpn_template) - ['production', 'testing', 'local', 'development', nil].each do |env| + environments = [nil] + manager.tags.collect {|name, tag| tag['environment']}.compact + environments.each do |env| vpn_nodes = manager.nodes[:environment => env][:services => 'openvpn']['openvpn.allow_limited' => true] if vpn_nodes.any? generate_test_client_cert(provider.ca.client_certificates.limited_prefix) do |key, cert|