The role filters are not applied on child tasks - only the :except
and :only seem to be applied - is this a bug or by design?


example:

task :A do
 puts "A"
 B
 C
end

task :B, :roles => :web do
  puts "B"
end

task :C, :roles => :app do
  puts "C"
end

running cap A

puts A B C on ALL servers - it should

A on every server
B on web only
C on app only
--~--~---------~--~----~------------~-------~--~----~
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