diff --git a/chef/cookbooks/centos/recipes/bootstrap.rb b/chef/cookbooks/centos/recipes/bootstrap.rb index b3bc9a522aa48301708ccb73e5f1067f3c3ea705..23f5eb2f2ecd8ab6d5ea46c4ac3ce8c53f01645d 100644 --- a/chef/cookbooks/centos/recipes/bootstrap.rb +++ b/chef/cookbooks/centos/recipes/bootstrap.rb @@ -7,6 +7,9 @@ end execute "eventmachine deps" do command "yum install -y gcc-c++" end +execute "ssl lib" do + command "yum install -y openssl-devel" +end def harden_ruby(ruby_string) Dir.glob("/usr/local/rvm/wrappers/#{ruby_string}/*").each do |file| @@ -22,4 +25,4 @@ def harden_ruby(ruby_string) end -harden_ruby("ruby-1.8.7-p302") \ No newline at end of file +harden_ruby("ruby-1.8.7-p302")