diff options
| author | elijah <elijah@riseup.net> | 2013-06-27 22:38:09 -0700 | 
|---|---|---|
| committer | elijah <elijah@riseup.net> | 2013-06-27 22:38:09 -0700 | 
| commit | 9a4faff699e4cdfdf4302e1baf6e5bf4cbff3bd1 (patch) | |
| tree | 974da888091d8e2ebd9a96bcbeca4bbcaaf2dd1e /lib/leap_cli | |
| parent | 466f774624bf5d8074306b0148b887b13e653fe7 (diff) | |
pass verbosity level through to ssh
Diffstat (limited to 'lib/leap_cli')
| -rw-r--r-- | lib/leap_cli/commands/shell.rb | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/lib/leap_cli/commands/shell.rb b/lib/leap_cli/commands/shell.rb index 8e62f06..e87e810 100644 --- a/lib/leap_cli/commands/shell.rb +++ b/lib/leap_cli/commands/shell.rb @@ -49,6 +49,11 @@ module LeapCli; module Commands        options << "-o 'StrictHostKeyChecking=yes'"      end      username = 'root' +    if LeapCli.log_level >= 3 +      options << "-vv" +    elsif LeapCli.log_level >= 2 +      options << "-v" +    end      ssh = "ssh -l #{username} -p #{node.ssh.port} #{options.join(' ')}"      if cmd == :ssh        command = "#{ssh} #{node.name}" | 
