From c10364437a7182bbb731627169dafce67b01a912 Mon Sep 17 00:00:00 2001 From: Matthias Hecker Date: Wed, 5 Mar 2014 13:10:22 +0100 Subject: [PATCH] [ssl] fix for missing ca path --- lib/rbot/ircbot.rb | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/rbot/ircbot.rb b/lib/rbot/ircbot.rb index 34c82926..b954e3b5 100644 --- a/lib/rbot/ircbot.rb +++ b/lib/rbot/ircbot.rb @@ -292,7 +292,7 @@ class Bot :desc => "The CA file used to verify the SSL connection.", :wizard => true) Config.register Config::StringValue.new('server.ssl_ca_path', - :default => '', :requires_restart => true, + :default => default_ssl_ca_path, :requires_restart => true, :desc => "Alternativly a directory that includes CA PEM files used to verify the SSL connection.", :wizard => true) Config.register Config::StringValue.new('server.password', @@ -822,6 +822,11 @@ class Bot end end + def default_ssl_ca_path + file = default_ssl_ca_file + File.dirname file if file + end + # Determine if tokyocabinet is installed, if it is use it as a default. def default_db begin -- 2.39.2