Remove unnecessary restart

This commit is contained in:
Petko Bordjukov 2016-07-05 17:05:02 +03:00
parent b93f023481
commit ad6d6f13bb
1 changed files with 6 additions and 6 deletions

View File

@ -48,12 +48,12 @@ set :nginx_server_name, 'cfp.openfest.org'
namespace :deploy do
desc 'Restart application'
task :restart do
on roles(:app), in: :sequence, wait: 5 do
execute '/home/barf/restart-clarion-production-server'
after :restart, :clear_cache do
on roles(:web), in: :groups, limit: 3, wait: 10 do
# Here we can do anything such as:
# within release_path do
# execute :rake, 'cache:clear'
# end
end
end
after :publishing, :restart
end