Skip to content

Commit

Permalink
Fix remediation spacing in IsLoadedKernelLatest action (#1104)
Browse files Browse the repository at this point in the history
The remediation was missing a newline at the end of it to separate the
steps to follow and the env var message.

Signed-off-by: Rodolfo Olivieri <[email protected]>
  • Loading branch information
r0x0d authored Feb 20, 2024
1 parent 9b08cc6 commit d54f193
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def run(self): # pylint: disable= too-many-return-statements
remediations=(
"To proceed with the conversion, update the kernel version by executing the following step:\n\n"
"1. yum install %s-%s -y\n"
"2. reboot"
"2. reboot\n"
"If you wish to ignore this message, set the environment variable "
"'CONVERT2RHEL_UNSUPPORTED_SKIP_KERNEL_CURRENCY_CHECK' to 1." % (package_to_check, latest_kernel)
),
Expand Down

0 comments on commit d54f193

Please sign in to comment.