Updated 12/1/17
Problem scenario
You need to install open source Puppet version 5 on a server to become a Puppet Master. You have an AWS Ubuntu Linux server. You only have five minutes to do it. How do you install Puppet Master immediately?
Solution
1. Create puppetinstaller.sh in the /tmp directory. It should have the following lines (stop before you get to step #2):
#!/bin/bash
# Written by continualintegration.com
apt-get update
apt-get -y install ntp
echo ‘
server 0.us.pool.ntp.org
server 1.us.pool.ntp.org
server 2.us.pool.ntp.org
server 3.us.pool.ntp.org’ >>
…
Continue reading “How Do You Install Puppet Master on an AWS Instance of Ubuntu 16?”