Skip to content

Latest commit

 

History

History

0x0A-configuration_management

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

img

0x0A. Configuration management

Resource

Installing puppet and puppet-lint

# installing puppet and puppet-lint
wget https://apt.puppet.com/puppet7-release-focal.deb && \
    dpkg -i puppet7-release-focal.deb && \
    apt-get update && \
    apt-get install puppet-agent puppet-lint -y

# confirming installation
puppet -V
puppet-lint -v

# If you get an error saying puppet command not found, source the path
source /etc/profile.d/puppet-agent.sh

Tasks

0. Create a file
image
1. Install a package
image
2. Execute a command
image