Skip to content

Instantly share code, notes, and snippets.

@mikehale
Created June 26, 2009 20:28
Show Gist options
  • Select an option

  • Save mikehale/136715 to your computer and use it in GitHub Desktop.

Select an option

Save mikehale/136715 to your computer and use it in GitHub Desktop.
Passenger capistrano tasks
namespace :deploy do
[:start, :restart].each do |action|
task(action, :roles => :app) do
run "touch #{current_release}/tmp/restart.txt"
end
end
task(:stop, :roles => :app) {}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment