Automate Installation of Perl and Sudo packages with Puppet
Requirement I need to install 2 packages, perl and sudo, and also want to re-install if these go missing. Try to do this manually and you could realize the manual effort required. But the good news is you could completely automate this using Puppet. You could write a Puppet module for installing the packages on RHEL 6.4 and Ubuntu. Pre-requisite Puppet server Puppet client installed (You could find this article in my blog) RHEL 6.x Ubuntu 14.x Configure yum and apt-get repositories, very important. Setup DNS or simpley put your hosts in /etc/hosts file on all servers Hosts I have 2 client machines, one running RHEL 6.4 and other on Ubuntu 14. I already configured these as puppet clients to the puppet server and already signed their SSL certificates on the puppet server. 1. web 2. db You could configure you own hosts, in any numbers you need. Action! Create puppet module Directory structure for module files ...