namespace :deploy do task :start do ; end task :stop do ; end task :restart, :roles => :app, :except => { :no_release => true } do puts "Telling Passenger to restart the app." run "#{try_sudo} touch #{File.join(current_path,'tmp','restart.txt')}" end end