summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2016-07-05 01:47:15 -0700
committerelijah <elijah@riseup.net>2016-07-05 01:47:15 -0700
commit08ee51d5fec11dae3cb0935a1671805dfee3a516 (patch)
tree479407e1f71aa494c47832974e78c0ea5574426d /lib
parentd05f00bf405e9c0f4f6431ba923e7b4001de9cb6 (diff)
fix error caused by passing an empty option to net-ssh
Diffstat (limited to 'lib')
-rw-r--r--lib/leap_cli/ssh/options.rb14
1 files changed, 9 insertions, 5 deletions
diff --git a/lib/leap_cli/ssh/options.rb b/lib/leap_cli/ssh/options.rb
index d991cc29..b8266d11 100644
--- a/lib/leap_cli/ssh/options.rb
+++ b/lib/leap_cli/ssh/options.rb
@@ -6,6 +6,11 @@ module LeapCli
module SSH
module Options
+ #
+ # options passed to net-ssh. See
+ # https://net-ssh.github.io/net-ssh/Net/SSH.html#method-c-start
+ # for the available options.
+ #
def self.global_options
{
#:keys_only => true,
@@ -78,13 +83,12 @@ module LeapCli
def self.net_ssh_log_level
if DEBUG
case LeapCli.logger.log_level
- when 1 then 3
- when 2 then 2
- when 3 then 1
- else 0
+ when 1 then :error
+ when 2 then :info
+ else :debug
end
else
- nil
+ :fatal
end
end