I am doing the following test on multiple hosts,
====>8==============
set :user, "root"
set :password, "password"

#ssh_options[:verbose]=:debug

5.times do |i|
        server "hawk#{i}", :ttt
end

task :show_etc_host, :roles => :ttt do
        run "cat /etc/hosts "
end
====>8==============

If i keep the server for 5 (5.times) only, it seems running fine.
However if I change it to more than 5,say 8.times, I have the
following error

  * executing `show_etc_host'
  * executing "cat /etc/hosts"
    servers: ["hawk0", "hawk1", "hawk2", "hawk3", "hawk4", "hawk5",
"hawk6", "hawk7"]
connection failed for: hawk3 (EOFError: end of file reached), hawk7
(EOFError: end of file reached), hawk5 (EOFError: end of file
reached), hawk0 (EOFError: end of file reached), hawk4 (EOFError: end
of file reached), hawk6 (EOFError: end of file reached)

the ruby is
>ruby -v
ruby 1.8.7 (2008-12-17 revision 0) [i386-mingw32]

Any clue on this?

--~--~---------~--~----~------------~-------~--~----~
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at http://groups.google.com/group/capistrano
-~----------~----~----~----~------~----~------~--~---

Reply via email to