How to write Puppet modules with example
simple Puppet module that installs and configures Nginx on a CentOS/RHEL system: sudo mkdir -p /etc/puppet/modules/nginx/manifests sudo touch /etc/puppet/modules/nginx/manifests/init.pp sudo
Read moresimple Puppet module that installs and configures Nginx on a CentOS/RHEL system: sudo mkdir -p /etc/puppet/modules/nginx/manifests sudo touch /etc/puppet/modules/nginx/manifests/init.pp sudo
Read moreTo install Puppet on a Red Hat Enterprise Linux (RHEL) system, you can follow these steps: sudo rpm -Uvh https://yum.puppetlabs.com/puppet6-release-el-7.noarch.rpm
Read morePuppet is an open-source tool that uses a declarative language to describe the desired state of a system. Puppet manages
Read more— – name: Install Apache hosts: webservers become: yes tasks: – name: Install Apache package apt: name: apache2 state: present
Read moreChef and Ansible are both popular configuration management tools used to automate infrastructure deployment and configuration. However, there are several
Read more