Skip to content

Instantly share code, notes, and snippets.

@joelhelbling
Forked from ryanb/chef_solo_bootstrap.sh
Last active August 29, 2015 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joelhelbling/10408433 to your computer and use it in GitHub Desktop.
Save joelhelbling/10408433 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
export RUBY_MAJOR=2.1
export RUBY_VERSION=ruby-2.1.1
export RUBY_URL=http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/$RUBY_VERSION.tar.gz
apt-get -y update
apt-get -y install build-essential zlib1g-dev libssl-dev libreadline6-dev libyaml-dev
cd /tmp
wget $RUBY_URL
tar -xvzf $RUBY_VERSION.tar.gz
cd $RUBY_VERSION/
./configure --prefix=/usr/local
make
make install
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