Created
May 25, 2012 14:24
-
-
Save msmith-thrillist/2788403 to your computer and use it in GitHub Desktop.
Running Puppet on RHEL 5
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
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