Skip to content

Instantly share code, notes, and snippets.

@defunkt
Created November 10, 2009 22:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save defunkt/231351 to your computer and use it in GitHub Desktop.
Save defunkt/231351 to your computer and use it in GitHub Desktop.
Unicorn Capistrano Tasks
# http://unicorn.bogomips.org/SIGNALS.html
namespace :unicorn do
task :start, :roles => :app do
sudo "god start unicorn"
end
task :stop, :roles => :app do
sudo "god stop unicorn"
end
task :restart, :roles => :app do
sudo "god restart unicorn"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment