Created
February 28, 2012 02:10
-
-
Save cyberswat/1928573 to your computer and use it in GitHub Desktop.
Install Puppet Repo on Ubuntu 10.04
This file contains hidden or 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
# Add puppetlabs to /etc/apt/sources.list.d | |
echo -e "deb http://apt.puppetlabs.com/ubuntu lucid main\ndeb-src http://apt.puppetlabs.com/ubuntu lucid main" >> /etc/apt/sources.list.d/puppet.list | |
# Download the public key | |
apt-key adv --keyserver keyserver.ubuntu.com --recv 4BD6EC30 | |
#Update apt | |
apt-get update | |
#Install puppet | |
apt-get install puppet -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment