diff --git a/convert2rhel/actions/system_checks/package_updates.py b/convert2rhel/actions/system_checks/package_updates.py index b7ea2bbf8a..20090b0133 100644 --- a/convert2rhel/actions/system_checks/package_updates.py +++ b/convert2rhel/actions/system_checks/package_updates.py @@ -137,6 +137,8 @@ def run(self): title="Outdated packages detected", description="Please refer to the diagnosis for further information", diagnosis=package_not_up_to_date_error_message, + remediations="If you wish to ignore this message, set the environment variable " + "'CONVERT2RHEL_OUTDATED_PACKAGE_CHECK_SKIP' to 1.", ) return diff --git a/convert2rhel/unit_tests/actions/system_checks/package_updates_test.py b/convert2rhel/unit_tests/actions/system_checks/package_updates_test.py index 0a6a6103b3..9543e637ba 100644 --- a/convert2rhel/unit_tests/actions/system_checks/package_updates_test.py +++ b/convert2rhel/unit_tests/actions/system_checks/package_updates_test.py @@ -92,6 +92,8 @@ def test_check_package_updates_not_up_to_date(pretend_os, monkeypatch, package_u title="Outdated packages detected", description="Please refer to the diagnosis for further information", diagnosis=diagnosis, + remediations="If you wish to ignore this message, set the environment variable " + "'CONVERT2RHEL_OUTDATED_PACKAGE_CHECK_SKIP' to 1.", ) assert diagnosis in caplog.records[-1].message