LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   LinuxAnswers Discussion (https://www.linuxquestions.org/questions/linuxanswers-discussion-27/)
-   -   How to install puppet 3.3 on Centos 6.4 (https://www.linuxquestions.org/questions/linuxanswers-discussion-27/how-to-install-puppet-3-3-on-centos-6-4-a-4175502590/)

szboardstretcher 04-22-2014 11:48 AM

How to install puppet 3.3 on Centos 6.4
 
A new la entry has been added:

How to install puppet 3.3 on Centos 6.4

Quote:

Here is a copy and paste method to install puppet 3.3 on Centos 6.4/Scientific Linux 6.4

Tested on 28-OCT-2013

[CODE]
# some variables to fill
echo "JUST hostname of server: "; read HOSTNAME
echo "Now the WHOLE FQDN: "; read FQDN

# install puppet
yum install -y puppet-server

# configure puppet master
cat << EOF > /etc/puppet/puppet.conf
[main]
logdir = /var/log/puppet
rundir = /var/run/puppet
ssldir = $vardir/ssl
[agent]
classfile = $vardir/classes.txt
localconfig = $vardir/localconfig
[master]
certname = ${FQDN}
autosign = true
EOF

# config the puppet client
c

evo2 04-22-2014 02:48 PM

Hi,
Quote:

Originally Posted by szboardstretcher (Post 5157174)
A new la entry has been added:

How to install puppet 3.3 on Centos 6.4

this seems to be missing one important step: adding the required repo to yum.

Evo2.


All times are GMT -5. The time now is 02:35 PM.