Skip to content

Instantly share code, notes, and snippets.

@buritica
Created December 1, 2011 23:23
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 buritica/1420656 to your computer and use it in GitHub Desktop.
Save buritica/1420656 to your computer and use it in GitHub Desktop.
sudo yum update
# RDEVEL, IRB, RDOC, RUBYGEMS
sudo yum install ruby-devel ruby-irb ruby-rdoc rubygems
# FACTER
cd ~/
mkdir src
cd src
wget http://puppetlabs.com/downloads/facter/facter-latest.tgz
tar -xf facter-latest.tgz
cd facter-*
sudo ruby install.rb
# PUPPET
wget http://puppetlabs.com/downloads/puppet/puppet-latest.tgz
tar -xf puppet-latest.tgz
cd puppet-*
sudo ruby install.rb
ruby --version
# ruby 1.8.7 (2010-08-16 patchlevel 302) [x86_64-linux]
rdoc --version
# RDoc V1.0.1 - 20041108
irb --version
# irb 0.9.5(05/04/13)
facter --version
# 1.5.8
puppet --version
# 2.6.4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment