ReleaseEngineering/Puppet/Client Deployment: Difference between revisions
< ReleaseEngineering | Puppet
Jump to navigation
Jump to search
No edit summary |
|||
| Line 4: | Line 4: | ||
As root, | As root, | ||
rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-3.noarch.rpm | rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-3.noarch.rpm | ||
= Move the JDK = | = Move the JDK = | ||
| Line 24: | Line 20: | ||
mount -a | mount -a | ||
to mount it. | to mount it. | ||
= Install Puppet = | |||
yum install ruby facter puppet ruby-shadow augeas-libs ruby-augeas | |||
chkconfig --level 2354 puppet on | |||
Revision as of 15:27, 24 June 2009
This document describes how to install the Puppet client on the CentOS 5.0 reference platform.
Install EPEL
As root,
rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-3.noarch.rpm
Move the JDK
To make the Puppet manifests a bit easier to manage we need to move the JDK to be in the same format as the other tools dirs (/tools/$name-$version):
# as root cd /tools mv jdk1.5.0_10 jdk-1.5.0_10 rm -f jdk ln -s jdk-1.5.0_10 jdk
Mount the puppet-files directory by adding an entry to fstab:
10.2.71.136:/export/buildlogs/puppet-files /N nfs ro 0 0
And then run,
mkdir /N mount -a
to mount it.
Install Puppet
yum install ruby facter puppet ruby-shadow augeas-libs ruby-augeas chkconfig --level 2354 puppet on