Skip to content

Latest commit

 

History

History

tests

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Some useful commands

check if SSH server is up and running

systemctl start sshd

run testing plan

bolt plan run lsys_tests::server -t puppetservers

Run the service

docker compose run -v $(pwd)/tmp:/root/tmp -d rocky9puppet8bolt

Enter into the container shell session

docker compose exec -ti  rocky9puppet8bolt /bin/bash

look for changed files

find / \( -path /sys \
  -o -path /dev \
  -o -path /proc \
  -o -path /run \
  -o -path /tmp \
  -o -path /var/cache \
  -o -path /var/lib/dnf \
  -o -path /var/lib/rpm \
  -o -path /var/log \
  -o -path /opt/puppetlabs \
  -o -path /root/puppet \) -prune -o -type f -mmin -10 -print