Sha256: a237a21c3e2b402f0f56eedca4712a05fc9988ac23c9d8f00b2ab1e9c92a36ee
Contents?: true
Size: 1.13 KB
Versions: 1
Compression:
Stored size: 1.13 KB
Contents
module CapistranoDeployManagement module Unicorn def self.load_into(configuration) configuration.load do set(:unicorn_config) { "#{current_path}/config/unicorn.rb" } set(:unicorn_pidfile) { "#{deploy_to}/shared/pids/unicorn.pid" } set(:unicorn_pid) { "cat #{deploy_to}/shared/pids/unicorn.pid" } namespace :unicorn do desc 'Restart unicorn.' task :restart, :roles => :app do # FIXME: PID does not exist, thus restarting fails # run "#{try_sudo} kill -s USR2 $(#{unicorn_pid})" unicorn.stop unicorn.start end desc 'Start unicorn.' task :start, :roles => :app do run "cd #{current_path} && bundle exec unicorn -c #{unicorn_config} -E #{rails_env} -D" end desc 'Stop unicorn.' task :stop, :roles => :app do run "cd #{current_path} && test -s #{unicorn_pidfile} && #{try_sudo} kill $(#{unicorn_pid}) || echo 'Unicorn not running. Nothing to kill.'" end end after 'deploy:restart', 'unicorn:restart' end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
capistrano-deploy-management-0.1.36 | lib/capistrano-deploy-management/unicorn.rb |