diff options
author | elijah <elijah@riseup.net> | 2013-03-31 14:14:01 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2013-03-31 14:14:01 -0700 |
commit | 9c131c1d84357175448496590e8d4e31e90118aa (patch) | |
tree | 156e4a573fd39b4f256a8c6b4eeaa78303834f02 /lib/leap_cli/commands | |
parent | 354c455dc6d463d5eed43804d1eb3aaa95c9e471 (diff) |
add ability to search for nodes using nil values.
Diffstat (limited to 'lib/leap_cli/commands')
-rw-r--r-- | lib/leap_cli/commands/test.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/leap_cli/commands/test.rb b/lib/leap_cli/commands/test.rb index 3f0feb0..79271be 100644 --- a/lib/leap_cli/commands/test.rb +++ b/lib/leap_cli/commands/test.rb @@ -28,17 +28,17 @@ 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'].each do |env| + ['production', 'testing', 'local', 'development', nil].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| - write_file! [:test_openvpn_config, env+'_limited'], Util.erb_eval(template, binding) + write_file! [:test_openvpn_config, [env, 'limited'].compact.join('_')], Util.erb_eval(template, binding) end end vpn_nodes = manager.nodes[:environment => env][:services => 'openvpn']['openvpn.allow_unlimited' => true] if vpn_nodes.any? generate_test_client_cert(provider.ca.client_certificates.unlimited_prefix) do |key, cert| - write_file! [:test_openvpn_config, env+'_unlimited'], Util.erb_eval(template, binding) + write_file! [:test_openvpn_config, [env, 'unlimited'].compact.join('_')], Util.erb_eval(template, binding) end end end |