From 5b9ec61c6e93fa8ebc842b3222e31343cee6404a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Pablo=20Fern=C3=A1ndez?= Date: Fri, 17 Dec 2010 08:22:32 -0300 Subject: [PATCH] Install bzip2 when bootstrapping, rvm needs it. --- chef/cookbooks/centos/recipes/bootstrap.rb | 3 +++ 1 file changed, 3 insertions(+) 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|