chourobin
7/19/2013 - 6:20 PM

Setup Ruby and Chef on Ubuntu 12.04 32 Bit. Run the following command with the current RAW file URL: "curl -l URL_FOR_RAW_FILE | bash"

Setup Ruby and Chef on Ubuntu 12.04 32 Bit. Run the following command with the current RAW file URL: "curl -l URL_FOR_RAW_FILE | bash"

#!/usr/bin/env bash
apt-get -y update
apt-get -y install build-essential libyaml-dev zlib1g-dev openssl libssl-dev libreadline-gplv2-dev
cd /tmp
wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p125.tar.gz
tar -xvzf ruby-1.9.3-p125.tar.gz
cd ruby-1.9.3-p125/
sudo ./configure --prefix=/usr/local
sudo make
sudo make install
gem install chef ruby-shadow --no-ri --no-rdoc