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 CHANGED
@@ -1,6 +1,11 @@
1
- == 0.4.8 / 2009-06-22
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
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Eycap
2
- VERSION = '0.4.9'
2
+ VERSION = '0.4.10'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: engineyard-eycap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.9
4
+ version: 0.4.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Engine Yard