From 407282d3730a64c8395e3a05822b49f7e4ce4793 Mon Sep 17 00:00:00 2001 From: elijah Date: Thu, 30 May 2013 12:19:05 -0700 Subject: remove hardcoded environments from test.rb --- lib/leap_cli/commands/test.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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| -- cgit v1.2.3