diff --git a/crmsh/migration.py b/crmsh/migration.py index 8df279373..626f6c382 100644 --- a/crmsh/migration.py +++ b/crmsh/migration.py @@ -271,11 +271,11 @@ def check_unsupported_corosync_features(handler: CheckResultHandler): handler.log_info("Checking used corosync features...") transport = 'udpu' if corosync.is_unicast() else 'udp' handler.handle_tip(f'Corosync transport "{transport}" will be deprecated in corosync 3.', [ - 'After migrating to SLES 16, run "crm health sles16 --fix" to migrate it to transport "knet".', + 'After migrating to SLES 16, run "crm cluster health sles16 --fix" to migrate it to transport "knet".', ]) if corosync.get_value("totem.rrp_mode") in {'active', 'passive'}: handler.handle_tip(f'Corosync RRP will be deprecated in corosync 3.', [ - 'After migrating to SLES 16, run "crm health sles16 --fix" to migrate it to knet multilink.', + 'After migrating to SLES 16, run "crm cluster health sles16 --fix" to migrate it to knet multilink.', ])