Module: Vagrant::Action::Builtin::Remote::SSHRun

Defined in:
lib/vagrant/action/builtin/remote/ssh_run.rb

Instance Method Summary collapse

Instance Method Details

#_raw_ssh_exec(env, info, opts) ⇒ Object



10
11
12
13
14
15
16
# File 'lib/vagrant/action/builtin/remote/ssh_run.rb', line 10

def _raw_ssh_exec(env, info, opts)
  # The Util::SSH package in remote mode expects to be able to
  # interact with a UI instead of raw stdin/stderr so the action
  # needs to pass that down.
  opts[:ui] = env[:ui]
  super(env, info, opts)
end