Update Servers & Workflows/Linux/Automation/Puppet/Puppet Bolt.md

This commit is contained in:
2024-11-14 21:46:25 -07:00
parent 741bbca203
commit 20339f3fd7

View File

@ -104,3 +104,26 @@ bolt inventory show
Use the '--targets', '--query', or '--rerun' option to view specific targets Use the '--targets', '--query', or '--rerun' option to view specific targets
Use the '--detail' option to view target configuration and data Use the '--detail' option to view target configuration and data
``` ```
## Initializing Kerberos
If you work with Windows-based devices in a domain environment, you will need to set up Puppet so it can perform Kerberos authentication while interacting with Windows devices. This involves a little bit of setup, but nothing too crazy.
### Install Krb5
We need to install the necessary software on the puppet server to allow Kerberos authentication to occur.
=== "Rocky, CentOS, RHEL, Fedora"
``` sh
sudo yum install krb5-workstation
```
=== "Debian, Ubuntu"
``` sh
sudo apt-get install krb5-user
```
=== "SUSE"
``` sh
sudo zypper install krb5-client
```