Capistrano::Configuration.instance(:must_exist).load do namespace :apache do desc "Gracefully restart the Apache webserver." task :restart do try_sudo "/usr/sbin/apachectl graceful" end end end