Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4079584
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T17:49:15+00:00 2026-05-20T17:49:15+00:00

I am trying to use Capistrano to deploy to two different roles, using Bundler

  • 0

I am trying to use Capistrano to deploy to two different roles, using Bundler on both, however the Bundler command and flags will be different. Is it possible to set variables that are specific to a role? Either something like:

set :bundle_flags, "--deployment --quiet", :role => "web"

or:

role :web do
  set :bundler_cmd, "--deployment --quiet"
end

Neither of those two options work, of course. Is there a way to accomplish this, or something like it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T17:49:15+00:00Added an answer on May 20, 2026 at 5:49 pm

    There is no way to have custom variable values per role.

    You can instead use the multistage extension from capistrano-ext to have different stages for your two different roles.

    If different stages doesn’t make sense for your deployment, you could write your own bundle:install task and run different commands based on roles

    run "bundle --deployment --quiet", :roles => :web
    run "bundle --deployment", :roles => :app
    

    As noted in the comment below, this approach, however, will raise errors if the role does not have a server defined. It will also run each command serially. To work around both those issues, use the parallel helper.

    parallel do |session|
       session.when 'in?(:web)', "bundle --deployment --quiet"
       session.when 'in?(:app)', "bundle --deployment"
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to deploy my rails application by using Passenger and Capistrano on Dreamhost.
I am trying to properly use Capistrano and RVM in order to deploy my
I am trying to deploy code using Capistrano, and it fails on deploy:start or
I'm trying use mod_rewrite to rewrite URLs from the following: http://www.site.com/one-two-file.php to http://www.site.com/one/two/file.php The
I'm trying to deploy my rails application with capistrano, but I'm having some trouble
I'm new to deploying with Capistrano, and I'm trying the following: deploy.rb: set :application,
Can you deploy a Rails3 app using Bundler's Gemfile WITHOUT running bundle install ...
I'm trying to deploy a Rails3 application, for the 1st time, to Dreamhost using
I am developing a PHP based application and using Capistrano to deploy it to
I'm trying to deploy to a slicehost slice using this config/deploy/production.rb file. I'm clueless

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.