You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See bz1495215. On FIPS enabled systems (where /proc/sys/crypto/fips_enabled == 1) Bootstrap fails to run puppet (Due to puppet's default signing algorithm being MD5, which isn't allowed in FIPS mode.
Setting digest_algorithm = sha256 in puppet.conf will allow a successful puppet run, but the signing algorithm must match on the Puppet Master. (so this only works if both are set)
Questions/Thoughts:
Do we default to setting the signing_algorithm to sha256 automatically when a FIPS enabled system is detected?
Do we make the user explicitly set 'FIPS mode' (which does the above)?
Do we exit the script with an error?
The text was updated successfully, but these errors were encountered:
See bz1495215. On FIPS enabled systems (where
/proc/sys/crypto/fips_enabled
==1
) Bootstrap fails to run puppet (Due to puppet's default signing algorithm being MD5, which isn't allowed in FIPS mode.Setting
digest_algorithm = sha256
in puppet.conf will allow a successful puppet run, but the signing algorithm must match on the Puppet Master. (so this only works if both are set)Questions/Thoughts:
The text was updated successfully, but these errors were encountered: