diff --git a/category/get_sysparam_info.py b/category/get_sysparam_info.py index bc4368905650fa6392d658abb29de98fc07a9a8c..9f3da61a989460c74b215c14d0804b856c14d554 100644 --- a/category/get_sysparam_info.py +++ b/category/get_sysparam_info.py @@ -30,3 +30,7 @@ class SysParamInfo: cmd_name = "cmdline" cmd_result = Command.cmd_run(bootparam_command) res_cmd = FileOperation.wrap_output_format(cmd_name, cmd_result, '-') + + kernel_command = "grubby --info=ALL | grep ^kernel" + ker_result = Command.cmd_run(kernel_command) + res_gk = FileOperation.wrap_output_format(cmd_name, ker_result, '-')