module Vagrant::Action::Builtin::Remote::SSHRun

Public Instance Methods

_raw_ssh_exec(env, info, opts) click to toggle source
Calls superclass method
# File lib/vagrant/action/builtin/remote/ssh_run.rb, line 7
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