Created
May 14, 2013 04:09
-
-
Save marcoleong/5573628 to your computer and use it in GitHub Desktop.
Script to install puppet agent, following instruction at
http://docs.puppetlabs.com/guides/puppetlabs_package_repositories.html#for-debian-and-ubuntu
http://docs.puppetlabs.com/guides/installation.html#debian-and-ubuntu
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
#/bin/bash | |
# run bash <(curl -sS https://gist.github.com/marcoleong/5573628/raw) | |
# author: Marco Leong (marcoleong at Github) | |
cd /tmp | |
echo "Downlaoding http://apt.puppetlabs.com/puppetlabs-release-precise.deb..." | |
wget http://apt.puppetlabs.com/puppetlabs-release-precise.deb | |
echo "Installing puppetlabs-release-precise.deb" | |
sudo dpkg -i puppetlabs-release-precise.deb | |
echo "Update APT..." | |
sudo apt-get update | |
echo "Install Puppet Agent" | |
sudo apt-get install puppet |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment