Skip to content

Commit

Permalink
Little tweaks and adding wget as a REE dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
lucashungaro committed Jul 23, 2009
1 parent 3400ba5 commit 2f79e6d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config/install.rb
@@ -1,5 +1,5 @@
# Require our stack # Require our stack
%w(essential apache scm ruby_enterprise memcached mysql).each do |r| %w(apache scm ruby_enterprise memcached mysql).each do |r|
require File.join(File.dirname(__FILE__), 'stack', r) require File.join(File.dirname(__FILE__), 'stack', r)
end end


Expand Down
4 changes: 2 additions & 2 deletions config/stack/ruby_enterprise.rb
Expand Up @@ -4,7 +4,7 @@


install_path = "/usr/local/ruby-enterprise" install_path = "/usr/local/ruby-enterprise"
binaries = %w(erb gem irb passenger-config passenger-install-apache2-module passenger-make-enterprisey passenger-memory-stats passenger-spawn-server passenger-status passenger-stress-test rackup rails rake rdoc ree-version ri ruby testrb) binaries = %w(erb gem irb passenger-config passenger-install-apache2-module passenger-make-enterprisey passenger-memory-stats passenger-spawn-server passenger-status passenger-stress-test rackup rails rake rdoc ree-version ri ruby testrb)
source "http://rubyforge.org/frs/download.php/55511/ruby-enterprise-#{version}.tar.gz" do source "http://rubyforge.org/frs/download.php/58677/ruby-enterprise-#{version}.tar.gz" do
custom_install 'sudo ./installer --auto=/usr/local/ruby-enterprise' custom_install 'sudo ./installer --auto=/usr/local/ruby-enterprise'


binaries.each {|bin| post :install, "ln -s #{install_path}/bin/#{bin} /usr/local/bin/#{bin}" } binaries.each {|bin| post :install, "ln -s #{install_path}/bin/#{bin} /usr/local/bin/#{bin}" }
Expand All @@ -20,5 +20,5 @@
end end


package :ree_dependencies do package :ree_dependencies do
apt %w(zlib1g-dev libreadline5-dev libssl-dev) apt %w(zlib1g-dev libreadline5-dev libssl-dev wget)
end end
2 changes: 1 addition & 1 deletion config/stack/scm.rb
@@ -1,6 +1,6 @@
package :git, :provides => :scm do package :git, :provides => :scm do
description 'Git Distributed Version Control' description 'Git Distributed Version Control'
version '1.6.4' version '1.6.3.3'
source "http://kernel.org/pub/software/scm/git/git-#{version}.tar.gz" source "http://kernel.org/pub/software/scm/git/git-#{version}.tar.gz"
requires :git_dependencies requires :git_dependencies


Expand Down

0 comments on commit 2f79e6d

Please sign in to comment.