`vagrant ssh -c` now uses a middleware sequence
This commit is contained in:
parent
2e25285297
commit
5e70ad0ec2
|
@ -18,6 +18,7 @@ module Vagrant
|
||||||
autoload :Call, "vagrant/action/builtin/call"
|
autoload :Call, "vagrant/action/builtin/call"
|
||||||
autoload :Confirm, "vagrant/action/builtin/confirm"
|
autoload :Confirm, "vagrant/action/builtin/confirm"
|
||||||
autoload :SSHExec, "vagrant/action/builtin/ssh_exec"
|
autoload :SSHExec, "vagrant/action/builtin/ssh_exec"
|
||||||
|
autoload :SSHRun, "vagrant/action/builtin/ssh_run"
|
||||||
end
|
end
|
||||||
|
|
||||||
module Env
|
module Env
|
||||||
|
|
|
@ -0,0 +1,43 @@
|
||||||
|
require "log4r"
|
||||||
|
|
||||||
|
module Vagrant
|
||||||
|
module Action
|
||||||
|
module Builtin
|
||||||
|
# This class will run a single command on the remote machine and will
|
||||||
|
# mirror the output to the UI. The resulting exit status of the command
|
||||||
|
# will exist in the `:ssh_run_exit_status` key in the environment.
|
||||||
|
class SSHRun
|
||||||
|
def initialize(app, env)
|
||||||
|
@app = app
|
||||||
|
@logger = Log4r::Logger.new("vagrant::action::builtin::ssh_run")
|
||||||
|
end
|
||||||
|
|
||||||
|
def call(env)
|
||||||
|
command = env[:ssh_run_command]
|
||||||
|
|
||||||
|
@logger.debug("Executing command: #{command}")
|
||||||
|
exit_status = 0
|
||||||
|
exit_status = env[:machine].communicate.execute(command, :error_check => false) do |type, data|
|
||||||
|
# Determine the proper channel to send the output onto depending
|
||||||
|
# on the type of data we are receiving.
|
||||||
|
channel = type == :stdout ? :out : :error
|
||||||
|
|
||||||
|
# Print the output as it comes in, but don't prefix it and don't
|
||||||
|
# force a new line so that the output is properly preserved however
|
||||||
|
# it may be formatted.
|
||||||
|
env[:ui].info(data.to_s,
|
||||||
|
:prefix => false,
|
||||||
|
:new_line => false,
|
||||||
|
:channel => channel)
|
||||||
|
end
|
||||||
|
|
||||||
|
# Set the exit status on a known environmental variable
|
||||||
|
env[:ssh_run_exit_status] = exit_status
|
||||||
|
|
||||||
|
# Call the next middleware
|
||||||
|
@app.call(env)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
|
@ -37,13 +37,10 @@ module VagrantPlugins
|
||||||
|
|
||||||
# Execute the actual SSH
|
# Execute the actual SSH
|
||||||
with_target_vms(argv, :single_target => true) do |vm|
|
with_target_vms(argv, :single_target => true) do |vm|
|
||||||
# Basic checks that are required for proper SSH
|
|
||||||
# raise Vagrant::Errors::VMNotCreatedError if !vm.created?
|
|
||||||
# raise Vagrant::Errors::VMInaccessible if !vm.state == :inaccessible
|
|
||||||
# raise Vagrant::Errors::VMNotRunningError if vm.state != :running
|
|
||||||
|
|
||||||
if options[:command]
|
if options[:command]
|
||||||
ssh_execute(vm, options[:command])
|
# XXX: Exit with proper exit status
|
||||||
|
@logger.debug("Executing single command on remote machine: #{options[:command]}")
|
||||||
|
vm.action(:ssh_run, :ssh_run_command => options[:command])
|
||||||
else
|
else
|
||||||
opts = {
|
opts = {
|
||||||
:plain_mode => options[:plain_mode],
|
:plain_mode => options[:plain_mode],
|
||||||
|
@ -57,29 +54,6 @@ module VagrantPlugins
|
||||||
|
|
||||||
# Success, exit status 0
|
# Success, exit status 0
|
||||||
0
|
0
|
||||||
end
|
|
||||||
|
|
||||||
protected
|
|
||||||
|
|
||||||
def ssh_execute(vm, command=nil)
|
|
||||||
exit_status = 0
|
|
||||||
|
|
||||||
@logger.debug("Executing command: #{command}")
|
|
||||||
exit_status = vm.channel.execute(command, :error_check => false) do |type, data|
|
|
||||||
# Determine the proper channel to send the output onto depending
|
|
||||||
# on the type of data we are receiving.
|
|
||||||
channel = type == :stdout ? :out : :error
|
|
||||||
|
|
||||||
# Print the SSH output as it comes in, but don't prefix it and don't
|
|
||||||
# force a new line so that the output is properly preserved
|
|
||||||
vm.ui.info(data.to_s,
|
|
||||||
:prefix => false,
|
|
||||||
:new_line => false,
|
|
||||||
:channel => channel)
|
|
||||||
end
|
|
||||||
|
|
||||||
# Exit with the exit status we got from executing the command
|
|
||||||
exit exit_status
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -68,6 +68,17 @@ module VagrantPlugins
|
||||||
b.use SSHExec
|
b.use SSHExec
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# This is the action that will run a single SSH command.
|
||||||
|
def self.action_ssh_run
|
||||||
|
Vagrant::Action::Builder.new.tap do |b|
|
||||||
|
b.use CheckVirtualbox
|
||||||
|
b.use CheckCreated
|
||||||
|
b.use CheckAccessible
|
||||||
|
b.use CheckRunning
|
||||||
|
b.use SSHRun
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue