diff --git a/pkg/hostcrypt/static.go b/pkg/hostcrypt/static.go index 049b96cf752..72c919dc6c9 100644 --- a/pkg/hostcrypt/static.go +++ b/pkg/hostcrypt/static.go @@ -5,13 +5,13 @@ package hostcrypt import "fmt" -const binaryInstructions = "To obtain a suitable binary, download the openshift-install-rhel8 archive from the client mirror, or extract the openshift-install-fips command from the release payload." +const binaryInstructions = "To obtain a suitable binary, download the openshift-install-rhel9 archive from the client mirror, or extract the openshift-install-fips command from the release payload." func allowFIPSCluster() error { hostMsg := "" if fipsEnabled, err := hostFIPSEnabled(); err != nil || !fipsEnabled { hostMsg = " on a host with FIPS enabled" } - return fmt.Errorf("use the FIPS-capable installer binary for RHEL 8%s.\n%s", + return fmt.Errorf("use the FIPS-capable installer binary for RHEL 9%s.\n%s", hostMsg, binaryInstructions) }