Skip to content

Instantly share code, notes, and snippets.

@jrenggli
Created January 17, 2015 20:58
Show Gist options
  • Save jrenggli/88597cb4151ca5f1eed8 to your computer and use it in GitHub Desktop.
Save jrenggli/88597cb4151ca5f1eed8 to your computer and use it in GitHub Desktop.
Install Puppet on Ubuntu/Debian
#echo "deb http://apt.puppetlabs.com/ wheezy main dependencies" >> /etc/apt/sources.list.d/puppet.list
#echo "deb http://apt.puppetlabs.com/ precise main dependencies" >> /etc/apt/sources.list.d/puppet.list
echo "deb http://apt.puppetlabs.com/ trusty main dependencies" >> /etc/apt/sources.list.d/puppet.list
wget http://apt.puppetlabs.com/pubkey.gpg
gpg --import pubkey.gpg
gpg -a --export 4BD6EC30 | apt-key add -
rm pubkey.gpg
aptitude install -y puppet-common
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment