Skip to content

Instantly share code, notes, and snippets.

View charlotte-miller's full-sized avatar

Charlotte Miller charlotte-miller

  • Stellar
  • San Mateo
View GitHub Profile
@charlotte-miller
charlotte-miller / chef_solo_bootstrap.sh
Created September 10, 2012 00:35 — forked from ryanb/chef_solo_bootstrap.sh
Bootstrap Chef Solo
#!/usr/bin/env bash
apt-get -y update
apt-get -y upgrade
apt-get -y install build-essential zlib1g-dev libssl-dev libreadline6-dev libyaml-dev
cd /tmp
wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p194.tar.gz
tar -xvzf ruby-1.9.3-p194.tar.gz
cd ruby-1.9.3-p194/
./configure --prefix=/usr/local
make