Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/chef
diff options
context:
space:
mode:
authorJ. Pablo Fernández <pupeno@pupeno.com>2010-12-17 14:22:32 +0300
committerJ. Pablo Fernández <pupeno@pupeno.com>2010-12-17 14:22:32 +0300
commit5b9ec61c6e93fa8ebc842b3222e31343cee6404a (patch)
tree015db07c7aa751e11d41fc94c6bfc30cc0e636e7 /chef
parent0bdb6aaab555767876d2368bfd6720367fcfa70b (diff)
Install bzip2 when bootstrapping, rvm needs it.
Diffstat (limited to 'chef')
-rw-r--r--chef/cookbooks/centos/recipes/bootstrap.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/chef/cookbooks/centos/recipes/bootstrap.rb b/chef/cookbooks/centos/recipes/bootstrap.rb
index f68733bce..78d7b6aa4 100644
--- a/chef/cookbooks/centos/recipes/bootstrap.rb
+++ b/chef/cookbooks/centos/recipes/bootstrap.rb
@@ -16,6 +16,9 @@ end
execute "JAVA!! for Jammit" do
command "yum install -y java"
end
+execute "rvm deps" do
+ command "yum install -y bzip2"
+end
def harden_ruby(ruby_string)
Dir.glob("/usr/local/rvm/wrappers/#{ruby_string}/*").each do |file|