Last active
March 25, 2017 11:13
-
-
Save jorke/befda7aa01657c21dde543da7c690b1a to your computer and use it in GitHub Desktop.
installs ruby then pulls chef
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt-get install gcc make libssl-dev | |
cd /usr/src | |
wget https://cache.ruby-lang.org/pub/ruby/2.2/ruby-2.2.6.tar.gz | |
tar -xvzf ruby-2.2.6.tar.gz | |
cd ruby-2.2.6 | |
./configure --enable-shared --disable-install-doc --disable-install-rdoc --disable-install-capi | |
make -j4 ; make install | |
gem install chef |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment