Skip to content

Instantly share code, notes, and snippets.

@7hunderbird
Created August 26, 2009 15:55
Show Gist options
  • Save 7hunderbird/175601 to your computer and use it in GitHub Desktop.
Save 7hunderbird/175601 to your computer and use it in GitHub Desktop.
# To restart passenger with capistrano, use this:
namespace :deploy do
task :start, :roles => :app do
run "touch #{current_release}/tmp/restart.txt"
end
task :stop, :roles => :app do
# Do nothing.
end
desc "Restart Application"
task :restart, :roles => :app do
run "touch #{current_release}/tmp/restart.txt"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment