engineyard-eycap 0.4.10 → 0.4.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/History.txt CHANGED
@@ -1,4 +1,8 @@
1
- == 0.4.9 / 2009-06-24
1
+ == 0.4.11 / 2009-06-25
2
+ * changed nginx start and restart to give output to cap
3
+ * fixed db:clone_to_local task
4
+
5
+ == 0.4.10 / 2009-06-24
2
6
  * using nohup on nginx start and restart
3
7
 
4
8
  == 0.4.9 / 2009-06-22
@@ -63,14 +63,11 @@ Capistrano::Configuration.instance(:must_exist).load do
63
63
  get "#{backup_file}.bz2", "/tmp/#{application}.sql.gz"
64
64
  development_info = YAML.load_file("config/database.yml")['development']
65
65
  if development_info['adapter'] == 'mysql'
66
- run "bzcat /tmp/#{application}.sql.gz | mysql -u #{development_info['username']} -p -h #{development_info['host']} #{development_info['database']}" do |ch, stream, out |
67
- ch.send_data "#{development_info['password']}\n" if out=~ /Enter password:/
68
- end
66
+ run_str = "bzcat /tmp/#{application}.sql.gz | mysql -u #{development_info['username']} --password='#{development_info['password']}' -h #{development_info['host']} #{development_info['database']}"
69
67
  else
70
- run "bzcat /tmp/#{application}.sql.gz | psql -W -U #{development_info['username']} -h #{development_info['host']} #{development_info['database']}" do |ch, stream, out |
71
- ch.send_data "#{development_info['password']}\n" if out=~ /^Password/
72
- end
68
+ run_str = "PGPASSWORD=#{development_info['password']} bzcat /tmp/#{application}.sql.gz | psql -U #{development_info['username']} -h #{development_info['host']} #{development_info['database']}"
73
69
  end
70
+ %x!#{run_str}!
74
71
  end
75
72
  end
76
73
 
@@ -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 "nohup /etc/init.d/nginx start > /dev/null"
6
+ sudo "nohup /etc/init.d/nginx start 2>&1 | cat"
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 "nohup /etc/init.d/nginx restart > /dev/null"
11
+ sudo "nohup /etc/init.d/nginx restart 2>&1 | cat"
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.10'
2
+ VERSION = '0.4.11'
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.10
4
+ version: 0.4.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Engine Yard