Vivek
08/29/2024, 11:36 PMlibselinux-ruby
is required to install for puppet7 to manage selinux policies through puppet?David Sandilands
08/30/2024, 1:13 PMbinford2k
08/30/2024, 5:40 PMIlovPuppet
08/30/2024, 11:37 PMbinford2k
08/31/2024, 10:38 PMDavid Sandilands
09/02/2024, 1:57 PMchecksum_value
parameter. If the checksum_value
parameter is not specified for puppet
and file
sources, Puppet computes a checksum based on its Puppet[:digest_algorithm]
. For http(s)
sources, Puppet uses the first HTTP header it recognizes out of the following list: X-Checksum-Sha256
, X-Checksum-Sha1
, X-Checksum-Md5
or Content-MD5
. If the server response does not include one of these headers, Puppet defaults to using the Last-Modified
header. Puppet updates the local file if the header is newer than the modified time (mtime) of the local file.Dr Bunsen Honeydew
09/03/2024, 1:45 PMCallum McCrorie
09/04/2024, 8:21 AMlogback.xml
once Puppet Server is installed however, I am trying to do this before Puppet Server is installed. Does anyone have any idea on how this could be done?Jason Grammenos
09/04/2024, 6:07 PMclientversion : The current version of Puppet agent.
puppetversion : The current version of Puppet on the node.
aio_agent_version
does anyone know what the differences are between those facts. the text description in the documentation does not make it very clear
https://www.puppet.com/docs/puppet/8/lang_facts_builtin_variableskenyon
09/04/2024, 6:14 PMclientversion
and puppetversion
are the same, and aio_agent_version
exists if puppet is installed from an all-in-one packageJason Grammenos
09/04/2024, 6:15 PMTheMeier
09/04/2024, 6:17 PMMarek Pastierik
09/04/2024, 6:45 PMbastelfreak
09/04/2024, 6:47 PMbastelfreak
09/04/2024, 6:48 PMbastelfreak
09/04/2024, 6:49 PMname
attribute that you can set if you wantMikeH
09/05/2024, 3:03 PMDebug: Starting connection for https://<master.server>:8140
Error: Could not retrieve catalog from remote server: certificate verify failed [certificate revoked for CN=<master.server>]
Warning: Not using cache on failed catalog
Error: Could not retrieve catalog; skipping run
Debug: Resolving service 'report' using Puppet::HTTP::Resolver::Settings
Debug: Creating new connection for https://<master.server>:8140
Debug: Starting connection for https://<master.server>:8140
Error: Could not send report: certificate verify failed [certificate revoked for CN=<master.server>]
bastelfreak
09/05/2024, 3:06 PMjms1
09/05/2024, 7:09 PMBoolean
parameter which has existed for 3-4 versions of our software, but now needs to not exist in hiera for the next version, i.e. if it does exist the code should fail()
... i've tried changing it from Boolean $x = false
to Optional[Boolean] $x = undef
, but the if ( defined($x) ) {
check in the code is throwing the error 'defined' parameter 'vals' expects a value of type String or Type, got Undef
... is there a normal pattern to check for whether a parameter is defined or not, regardless of the type? (this one is a Boolean
but i have 3-4 others that are also being deprecated, some String
and one Integer
)jms1
09/05/2024, 8:15 PMtemplate()
encounters a value in a substitution tag in a template which doesn't exist as a variable, it throws the most UN-helpful error message i've ever seen ... is there any way to trick it into giving me any more useful information, like the line number within the template, or the symbol it wasn't able to evaluate? the only thing it's ever given me is something like Detail: integer 10796184562 too big to convert to 'int'
Dr Bunsen Honeydew
09/05/2024, 8:45 PMBob Negri
09/05/2024, 10:24 PMvchepkov
09/08/2024, 12:02 PM