Skip to content

Instantly share code, notes, and snippets.

@jpalumickas
Forked from defunkt/unicorn.rb
Created February 5, 2013 23:44
Show Gist options
  • Save jpalumickas/4718801 to your computer and use it in GitHub Desktop.
Save jpalumickas/4718801 to your computer and use it in GitHub Desktop.
# 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