This guide assumes you are upgrading from Mac OSX 10.6 Snow Leopard to 10.7 Lion.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
after "deploy", "deploy:migrate", "deploy:static", "deploy:restart", "custom:git:tag" | |
namespace :deploy do | |
[:stop, :start, :restart, :reload].each do |action| | |
desc "#{action.to_s.capitalize} Apache." | |
task action, :roles => :app do | |
run "sudo /etc/init.d/apache2 #{action.to_s}" | |
end | |
end |
NewerOlder