summaryrefslogtreecommitdiff
path: root/lib/leap_cli/commands/shell.rb
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2014-12-07 15:38:27 -0800
committerelijah <elijah@riseup.net>2014-12-07 15:38:27 -0800
commited0d1750e5afa551ec5fda3f3b137e20b1aa8688 (patch)
tree92b2cb2c66b825b2feeb657b6824b5ec622af248 /lib/leap_cli/commands/shell.rb
parent2fa095f30ca2a02bf4024617b3fb3fecfab16a2c (diff)
rename shell.rb to ssh.rb
Diffstat (limited to 'lib/leap_cli/commands/shell.rb')
-rw-r--r--lib/leap_cli/commands/shell.rb101
1 files changed, 0 insertions, 101 deletions
diff --git a/lib/leap_cli/commands/shell.rb b/lib/leap_cli/commands/shell.rb
deleted file mode 100644
index a7a0d85..0000000
--- a/lib/leap_cli/commands/shell.rb
+++ /dev/null
@@ -1,101 +0,0 @@
-module LeapCli; module Commands
-
- desc 'Log in to the specified node with an interactive shell.'
- arg_name 'NAME' #, :optional => false, :multiple => false
- command :ssh do |c|
- c.flag 'ssh', :desc => "Pass through raw options to ssh (e.g. --ssh '-F ~/sshconfig')"
- c.flag 'port', :desc => 'Override ssh port for remote host'
- c.action do |global_options,options,args|
- exec_ssh(:ssh, options, args)
- end
- end
-
- desc 'Log in to the specified node with an interactive shell using mosh (requires node to have mosh.enabled set to true).'
- arg_name 'NAME'
- command :mosh do |c|
- c.action do |global_options,options,args|
- exec_ssh(:mosh, options, args)
- end
- end
-
- protected
-
- #
- # allow for ssh overrides of all commands that use ssh_connect
- #
- def connect_options(options)
- connect_options = {:ssh_options=>{}}
- if options[:port]
- connect_options[:ssh_options][:port] = options[:port]
- end
- if options[:ip]
- connect_options[:ssh_options][:host_name] = options[:ip]
- end
- return connect_options
- end
-
- def ssh_config_help_message
- puts ""
- puts "Are 'too many authentication failures' getting you down?"
- puts "Then we have the solution for you! Add something like this to your ~/.ssh/config file:"
- puts " Host *.#{manager.provider.domain}"
- puts " IdentityFile ~/.ssh/id_rsa"
- puts " IdentitiesOnly=yes"
- puts "(replace `id_rsa` with the actual private key filename that you use for this provider)"
- end
-
- private
-
- def exec_ssh(cmd, cli_options, args)
- node = get_node_from_args(args, :include_disabled => true)
- port = node.ssh.port
- options = [
- "-o 'HostName=#{node.ip_address}'",
- # "-o 'HostKeyAlias=#{node.name}'", << oddly incompatible with ports in known_hosts file, so we must not use this or non-standard ports break.
- "-o 'GlobalKnownHostsFile=#{path(:known_hosts)}'",
- "-o 'UserKnownHostsFile=/dev/null'"
- ]
- if node.vagrant?
- options << "-i #{vagrant_ssh_key_file}" # use the universal vagrant insecure key
- options << "-o IdentitiesOnly=yes" # force the use of the insecure vagrant key
- options << "-o 'StrictHostKeyChecking=no'" # blindly accept host key and don't save it (since userknownhostsfile is /dev/null)
- else
- options << "-o 'StrictHostKeyChecking=yes'"
- end
- if !node.supported_ssh_host_key_algorithms.empty?
- options << "-o 'HostKeyAlgorithms=#{node.supported_ssh_host_key_algorithms}'"
- end
- username = 'root'
- if LeapCli.log_level >= 3
- options << "-vv"
- elsif LeapCli.log_level >= 2
- options << "-v"
- end
- if cli_options[:port]
- port = cli_options[:port]
- end
- if cli_options[:ssh]
- options << cli_options[:ssh]
- end
- ssh = "ssh -l #{username} -p #{port} #{options.join(' ')}"
- if cmd == :ssh
- command = "#{ssh} #{node.domain.full}"
- elsif cmd == :mosh
- command = "MOSH_TITLE_NOPREFIX=1 mosh --ssh \"#{ssh}\" #{node.domain.full}"
- end
- log 2, command
-
- # exec the shell command in a subprocess
- pid = fork { exec "#{command}" }
-
- # wait for shell to exit so we can grab the exit status
- _, status = Process.waitpid2(pid)
-
- if status.exitstatus == 255
- ssh_config_help_message
- elsif status.exitstatus != 0
- exit_now! status.exitstatus, status.exitstatus
- end
- end
-
-end; end \ No newline at end of file