Skip to content

Instantly share code, notes, and snippets.

View adriancuadros's full-sized avatar

Adrian Cuadros adriancuadros

View GitHub Profile
@adriancuadros
adriancuadros / chef_solo_bootstrap.sh
Last active October 7, 2015 17:48 — forked from ryanb/chef_solo_bootstrap.sh
Bootstrap Chef Solo
#!/usr/bin/env bash
apt-get -y update
apt-get -y install build-essential zlib1g-dev libssl-dev libreadline6 libreadline6-dev libyaml-dev
cd /tmp
wget ftp://ftp.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p247.tar.gz
tar -xvzf ruby-2.0.0-p247.tar.gz
cd ruby-2.0.0-p247/
./configure --prefix=/usr/local
make
make install