Skip to content

Instantly share code, notes, and snippets.

@msmith-thrillist
Created May 25, 2012 14:24
Show Gist options
  • Save msmith-thrillist/2788403 to your computer and use it in GitHub Desktop.
Save msmith-thrillist/2788403 to your computer and use it in GitHub Desktop.
Running Puppet on RHEL 5
yum install -y gcc zlib zlib-devel openssl-devel
wget http://depot.thrillist.com/ruby/CURRENT
tar xvf CURRENT
cd ruby-1.8.7-p330
./configure --enable-pthread
make
make install
cd ..
rm -rf CURRENT
wget http://depot.thrillist.com/rubygems/CURRENT
tar xvf CURRENT
cd rubygems-1.8.11
ruby setup.rb
cd ..
rm -rf CURRENT
gem install puppet facter --no-rdoc --no-ri
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment