module Vagrant::Util::Remote::SSH::ClassMethods
Public Instance Methods
_raw_exec(ssh, command_options, ssh_info, opts)
click to toggle source
# File lib/vagrant/util/remote/ssh.rb, line 8 def _raw_exec(ssh, command_options, ssh_info, opts) raise "ssh exec is not yet implemented in server mode" end
_raw_subprocess(ssh, command_options, ssh_info, opts)
click to toggle source
# File lib/vagrant/util/remote/ssh.rb, line 12 def _raw_subprocess(ssh, command_options, ssh_info, opts) subprocess_opts = { notify: [:stdout, :stderr] } if ssh_info[:forward_env] subprocess_opts[:env] = {} ssh_info[:forward_env].each do |key| subprocess_opts[:env][key] = ENV[key] end end command_options.append(subprocess_opts) Vagrant::Util::Subprocess.execute(ssh, *command_options) do |type, output| # TODO(phinze): For now we're collapsing stderr and stdout, because # we don't (yet!) have a way of sending stderr back through # terminal.UI. Once we plumb through that capability we should be # able to switch on type here so things are printed where they go. opts[:ui].client.output output end end