Sha256: 2e4bf8371a663b5fba0c3462ba974727a630bd8bf5f1ff66c5daf2564546f5ff

Contents?: true

Size: 1.69 KB

Versions: 3

Compression:

Stored size: 1.69 KB

Contents

Capistrano::Configuration.instance(true).load do
  set :juggernaut_config, "#{current_path}/config/juggernaut.yml"
  set :juggernaut_pid, "#{current_path}/tmp/pids/juggernaut.pid"
  set :juggernaut_log, "#{current_path}/log/juggernaut.log"
  set :base_ruby_path,    '/usr'
  
  namespace :juggernaut do   
             
    # ===============================================================
    # PROCESS MANAGEMENT
    # ===============================================================  
    
    desc "Starts the juggernaut push server"
    task :start, :roles => :app do
      puts "Starting juggernaut push server"
      try_sudo "#{base_ruby_path}/bin/juggernaut -c #{juggernaut_config} -d --pid #{juggernaut_pid} --log #{juggernaut_log}"
    end
    
    desc "Stops the juggernaut push server"
    task :stop, :roles => :app do
      puts "Stopping juggernaut push server"
      try_sudo "#{base_ruby_path}/bin/juggernaut -c #{juggernaut_config} -k * --pid #{juggernaut_pid} --log #{juggernaut_log}" 
    end
    
    desc "Restarts the juggernaut push server"
    task :restart, :roles => :app do
      juggernaut.stop
      juggernaut.start
    end  
    
    # ===============================================================
    # FILE MANAGEMENT
    # ===============================================================  
    
    desc "Symlinks the shared/config/juggernaut yaml to release/config/"
    task :symlink_config, :roles => :app do
      try_sudo "ln -s #{shared_path}/config/juggernaut.yml #{release_path}/config/juggernaut.yml"
    end
    
    desc "Displays the juggernaut log from the server"
    task :tail, :roles => :app do
      stream "tail -f #{shared_path}/log/juggernaut.log" 
    end
    
  end
  
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
nesquena-cap-recipes-0.3.11 lib/cap_recipes/tasks/juggernaut/manage.rb
nesquena-cap-recipes-0.3.8 lib/cap_recipes/tasks/juggernaut/manage.rb
nesquena-cap-recipes-0.3.9 lib/cap_recipes/tasks/juggernaut/manage.rb