# File lib/knife-solo/ssh_command.rb, line 310 def run_with_fallbacks(commands, options = {}) commands.each do |command| result = run_command(command, options) return result if result.success? end SshConnection::ExecResult.new(1) end