Ernest,

Sounds like a task that is more appropriate to rake than cap,
actually. You'd just have a master Rakefile, and then a task like:

  task :deploy_all do
    system "cd project1 && cap deploy"
    system "cd project2 && cap deploy"
    ...
  end

And then:

  rake deploy_all

The above isn't particularly robust, though: if the deploy of project2
fails, project1 remains deployed. Also, the deploys happen
sequentially, rather than in parallel.

- Jamis

On 7/31/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I am working on a project that involves multiple Rails applications,
> each one providing several XML-RPC services.
> I have setup Capistrano deployment for each of them, no problem.
> How should I proceed in my goal of having one recipe that invokes the
> deployment of each of the applications?
>
> Any help is appreciated,
>
> Ernest
>
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
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