engineyard-eycap 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +3 -0
- data/lib/eycap/recipes/passenger.rb +1 -1
- data/lib/eycap.rb +1 -1
- metadata +1 -1
data/History.txt
CHANGED
@@ -3,7 +3,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
3
3
|
desc <<-DESC
|
4
4
|
Restart the passenger module to reload the application after deploying.
|
5
5
|
DESC
|
6
|
-
task :restart, :roles =>
|
6
|
+
task :restart, :roles => :app, :except => {:no_release => true} do
|
7
7
|
sudo "touch #{current_path}/tmp/restart.txt"
|
8
8
|
end
|
9
9
|
end
|
data/lib/eycap.rb
CHANGED