engineyard-eycap 0.4.9 → 0.4.10
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +6 -1
- data/lib/eycap/recipes/nginx.rb +2 -2
- data/lib/eycap.rb +1 -1
- metadata +1 -1
data/History.txt
CHANGED
@@ -1,6 +1,11 @@
|
|
1
|
-
== 0.4.
|
1
|
+
== 0.4.9 / 2009-06-24
|
2
|
+
* using nohup on nginx start and restart
|
3
|
+
|
4
|
+
== 0.4.9 / 2009-06-22
|
2
5
|
* added nginx reload, upgrade and configtest - thanks Randy (ydnar)
|
3
6
|
|
7
|
+
== 0.4.8 / there is no 0.4.8, just like there is no spoon.
|
8
|
+
|
4
9
|
== 0.4.7 / 2009-05-12
|
5
10
|
* fixed bug in clone_prod_to_staging and clone_to_local db tasks for postgres
|
6
11
|
where the regex matching the password prompt for the restore was wrong
|
data/lib/eycap/recipes/nginx.rb
CHANGED
@@ -3,12 +3,12 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
3
3
|
namespace :nginx do
|
4
4
|
desc "Start Nginx on the app slices."
|
5
5
|
task :start, :roles => :app do
|
6
|
-
sudo "/etc/init.d/nginx start"
|
6
|
+
sudo "nohup /etc/init.d/nginx start > /dev/null"
|
7
7
|
end
|
8
8
|
|
9
9
|
desc "Restart the Nginx processes on the app slices."
|
10
10
|
task :restart , :roles => :app do
|
11
|
-
sudo "/etc/init.d/nginx restart"
|
11
|
+
sudo "nohup /etc/init.d/nginx restart > /dev/null"
|
12
12
|
end
|
13
13
|
|
14
14
|
desc "Stop the Nginx processes on the app slices."
|
data/lib/eycap.rb
CHANGED