Sha256: 68089517347e7e5cee6604d23eceff8a77a42d8b2a42ce952a3cfc48d9e6151b

Contents?: true

Size: 1.78 KB

Versions: 4

Compression:

Stored size: 1.78 KB

Contents

Capistrano::Configuration.instance.load do  
  namespace :bluepill do
    desc "|capistrano-recipes| Install the bluepill monitoring tool"
    task :install, :roles => [:app] do
      sudo "gem install bluepill"
    end
    
    desc "|capistrano-recipes| Stop processes that bluepill is monitoring and quit bluepill"
    task :quit, :roles => [:app] do
      args = exists?(:options) ? options : ''
      begin
        sudo "bluepill stop #{args}"
      rescue
        puts "Bluepill was unable to finish gracefully all the process"
      ensure
        sudo "bluepill quit"
      end
    end
    
    desc "|capistrano-recipes| Load the pill from {your-app}/config/pills/{app-name}.pill"
    task :init, :roles =>[:app] do
      sudo "bluepill load #{current_path}/config/pills/#{application}.pill"
    end
 
    desc "|capistrano-recipes| Starts your previous stopped pill"
    task :start, :roles =>[:app] do
      args = exists?(:options) ? options : ''
      sudo "bluepill start #{args}"
    end
    
    desc "|capistrano-recipes| Stops some bluepill monitored process"
    task :stop, :roles =>[:app] do
      args = exists?(:options) ? options : ''
      sudo "bluepill stop #{args}"
    end
    
    desc "|capistrano-recipes| Restarts the pill from {your-app}/config/pills/{app-name}.pill"
    task :restart, :roles =>[:app] do
      args = exists?(:options) ? options : ''
      sudo "bluepill restart #{args}"
    end
 
    desc "|capistrano-recipes| Prints bluepills monitored processes statuses"
    task :status, :roles => [:app] do
      args = exists?(:options) ? options : ''
      sudo "bluepill status #{args}"
    end
  end
    
  after 'deploy:setup' do
    bluepill.install if Capistrano::CLI.ui.agree("Do you want to install the bluepill monitor? [Yn]")
  end if is_using('bluepill', :monitorer)
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
dark-capistrano-recipes-0.8.4 lib/recipes/bluepill.rb
dark-capistrano-recipes-0.8.3 lib/recipes/bluepill.rb
dark-capistrano-recipes-0.8.2 lib/recipes/bluepill.rb
dark-capistrano-recipes-0.8.1 lib/recipes/bluepill.rb