Changeset 443

Show
Ignore:
Timestamp:
03/27/08 16:01:46 (10 months ago)
Author:
mbailey
Message:

generate configs first so any prompting will occur at the start

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/deprec/recipes/rails.rb

    r423 r443  
    234234      task :install_rails_stack do 
    235235 
     236        # Generate configs first in case user input is required 
     237        # Then we can go make a cup of tea. 
     238        top.deprec.nginx.config_gen 
     239        top.deprec.mongrel.config_gen_system 
     240        top.deprec.monit.config_gen 
     241         
    236242        # Nginx as our web frontend 
    237243        top.deprec.nginx.install 
    238         top.deprec.nginx.config_gen 
    239244        top.deprec.nginx.config 
    240245         
     
    248253        # Mongrel as our app server 
    249254        top.deprec.mongrel.install 
    250         top.deprec.mongrel.config_gen_system 
    251255        top.deprec.mongrel.config_system 
    252256         
    253257        # Monit 
    254258        top.deprec.monit.install 
    255         top.deprec.monit.config_gen 
    256259        top.deprec.monit.config 
    257260