Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have written a script named mailman_server using gem "mailman" placed in 'script/mailman_server'

    #!/usr/bin/env ruby
    require "rubygems"
    require "bundler/setup"
    require "mailman"

    #Mailman.config.logger = Logger.new("log/mailman.log")
    Mailman.config.poll_interval = 3
    Mailman.config.pop3 = {
      server: 'server', port: 110,
      username: "loginid",
      password: "password"
    }

    Mailman::Application.run do
      default do
        p "Found a new message"
        # 'perform some action here'
        end
    end

It fetches all the emails from my account and then i do processing on them.

I have my deploy.rb file as

set :stages, %w(production)     #various environments
load "deploy/assets"                    #precompile all the css, js and images... before deployment..
require "bundler/capistrano"            # install all the new missing plugins...
require 'delayed/recipes'               # load this for delayed job..
require 'capistrano/ext/multistage'     # deploy on all the servers..
require "rvm/capistrano"                # if you are using rvm on your server..
require './config/boot'           
require 'airbrake/capistrano'           # using airbrake in your application for crash notifications..

set :delayed_job_args, "-n 2"            # number of delayed job workers 


before "deploy:assets:symlink", "deploy:copy_database_file"
before "deploy:update_code",  "delayed_job:stop"  # stop the previous deployed job workers...
after "deploy:start",   "delayed_job:start" #start the delayed job 
after "deploy:restart", "delayed_job:restart" # restart it..
after "deploy:update", "deploy:cleanup" #clean up temp files etc.
set :rvm_ruby_string, '1.9.3'             # ruby version you are using...
set :rvm_type, :user

server "my_server_ip", :app, :web, :db, :primary => true 

set(:application) { "my_application_name" }
set (:deploy_to) { "/home/user/#{application}/#{stage}" }
set :user, 'user'
set :keep_releases, 3
set :repository, "git@bitbucket.org:my_random_git_repo_url"
set :use_sudo, false
set :scm, :git
default_run_options[:pty] = true
ssh_options[:forward_agent] = true
set :deploy_via, :remote_cache
set :git_shallow_clone, 1
set :git_enable_submodules, 1

namespace :deploy do
  task :start do ; end
  task :stop do ; end
  task :restart, :roles => :app, :except => { :no_release => true } do
    run "#{try_sudo} touch #{File.join(current_path,'tmp','restart.txt')}"
  end
  task :copy_database_file do
    run "ln -sf #{shared_path}/database.yml #{release_path}/config/database.yml"
  end
end

I want to execute this script every time I deploy to the server. Also I need to stop this script whenever I am deploying the code.

I am unable to figure out how can we start or stop this script using capistrano on server.

share|improve this question
How do you stop the script manually? Just by pressing Ctrl+C while it is processing? If that is the case, it would be a good idea to add another script to kill the process started by mailman_server, and invoke it from before deploy callback. – Prakash Murthy Jan 15 at 12:20
@Prakash yes I do that. Because I need that script to be running on server I have used screens. – Sahil Grover Jan 16 at 7:07

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.