class Multissh
Public Instance Methods
run()
click to toggle source
# File lib/multissh.rb, line 15 def run tasks = [] @nodes.each do |node| worker = Worker.new( hostname: node.chomp, username: @username, password: @password, pkey_password: @pkey_password, sudo_password: @sudo_password, command: @command, block: @block, header_max_length: @header_max_length, debug: @debug, ) tasks.append(worker) end results = Parallel.map(tasks) do |task| task.go end rescue Interrupt puts "\nCtrl+C Interrupt\n" exit 1 end