Skip to content

Instantly share code, notes, and snippets.

@mkuhnt
Created February 8, 2013 17:54
Show Gist options
  • Save mkuhnt/4740726 to your computer and use it in GitHub Desktop.
Save mkuhnt/4740726 to your computer and use it in GitHub Desktop.
Bootstrap a vm with ruby MRI 1.9.3-p385 and chef.
#!/usr/bin/env bash
#
# Run me as sudo!
#
apt-get -y update
apt-get -y install build-essential zlib1g-dev libssl-dev libreadline-gplv2-dev libyaml-dev
apt-get -y install autoconf curl git-core bzip2
apt-get -y autoremove
apt-get -y clean
cd /usr/local/src
wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p385.tar.gz
tar -xvzf ruby-1.9.3-p385.tar.gz
cd ruby-1.9.3-p385
./configure --prefix=/usr/local
make && make install
cd /usr/local
rm -rf /usr/local/src/ruby-1.9.3-*
gem install chef ruby-shadow --no-ri --no-rdoc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment