Created
April 24, 2012 22:50
-
-
Save kjoconnor/2484425 to your computer and use it in GitHub Desktop.
Install puppet-server on Amazon Linux
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
1. Paste into /etc/yum.repos.d/puppetlabs.repo | |
[puppetlabs] | |
name=Puppet Labs - $basearch | |
baseurl=http://yum.puppetlabs.com/el/6Server/products/$basearch | |
failovermethod=priority | |
priority=0 | |
enabled=0 | |
2. rpm --import http://yum.puppetlabs.com/RPM-GPG-KEY-puppetlabs | |
3. rpm -Uhv http://pkgs.repoforge.org/ruby-shadow/ruby-shadow-1.4.1-2.el6.rf.x86_64.rpm | |
4. yum --enablerepo=puppetlabs install puppet-server |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just to add, you can also install puppet-4.10 through the same method.
Only change the repo rpm to https://yum.puppetlabs.com/puppetlabs-release-pc1-el-6.noarch.rpm
and repo name would be puppetlabs-pc1 instead of puppetlabs-products
rpm -ivh https://yum.puppetlabs.com/puppetlabs-release-pc1-el-6.noarch.rpm
[...]
yum-config-manager --setopt="puppetlabs-pc1.priority=1" --save
[...]