Skip to content

Instantly share code, notes, and snippets.

@mdolian
Created June 21, 2009 16:38
Show Gist options
  • Save mdolian/133558 to your computer and use it in GitHub Desktop.
Save mdolian/133558 to your computer and use it in GitHub Desktop.
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