Created
December 1, 2011 23:23
-
-
Save buritica/1420655 to your computer and use it in GitHub Desktop.
This file contains 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
# RDEVEL, IRB, RDOC, RUBYGEMS | |
sudo yum install ruby-devel ruby-irb ruby-rdoc rubygems | |
# FACTER | |
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 |
This file contains 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
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