Bugzilla – Bug 1214383
[Build 13.4] Some settings were not found on S390x and ppc64le for yast2 kdump
Last modified: 2023-08-28 12:13:39 UTC
## Description When run yast2 kdump with module yast2_kdump_accept_kdump_options, some settings were not found in the /etc/sysconfig/kdump The expect settings are: - path: /etc/sysconfig/kdump settings: KDUMP_DUMPLEVEL: 31 KDUMP_DUMPFORMAT: lzo KDUMP_SAVEDIR: '(file://|)/var/crash' KDUMP_KEEP_OLD_DUMPS: 5 KDUMP_IMMEDIATE_REBOOT: 'yes' KDUMP_COPY_KERNEL: 'yes' ## Logs On s390x these settings were not found in /etc/sysconfig/kdump. https://openqa.suse.de/tests/11860767#step/yast2_kdump_accept_kdump_options/13 Setting 'KDUMP_DUMPFORMAT' with value 'lzo' not found in /etc/sysconfig/kdump. Setting 'KDUMP_KEEP_OLD_DUMPS' with value '5' not found in /etc/sysconfig/kdump. Setting 'KDUMP_IMMEDIATE_REBOOT' with value 'yes' not found in /etc/sysconfig/kdump. on ppc64le: https://openqa.suse.de/tests/11860767#step/yast2_kdump_accept_kdump_options/13 Setting 'KDUMP_FADUMP' with value 'yes' not found in /etc/sysconfig/kdump. ## Observation openQA test in scenario sle-15-SP6-Online-s390x-yast2_ncurses_textmode@s390x-kvm-sle15 fails in [yast2_kdump_accept_kdump_options](https://openqa.suse.de/tests/11860767/modules/yast2_kdump_accept_kdump_options/steps/13) ## Test suite description Test for yast2 UI, ncurses only in textmode. ## Reproducible Fails since (at least) Build [13.4](https://openqa.suse.de/tests/11860767) (current job) ## Expected result Last good: [10.3](https://openqa.suse.de/tests/11801924) (or more recent) ## Further details Always latest result in this scenario: [latest](https://openqa.suse.de/tests/latest?arch=s390x&distri=sle&flavor=Online&machine=s390x-kvm-sle15&test=yast2_ncurses_textmode&version=15-SP6)
Created attachment 868868 [details] yast2log
I think that it is caused by change in options available in the config by default. Could you attach complete sysconfig/kdump ?
Created attachment 868963 [details] sysconfig_kdump.txt
Diff between that /etc/sysconfig/kdump from comment #3 and the one from my Leap 15.5 /etc/sysconfig/kdump (only parameter lines, i.e. those with a '='): @@ -1 +1 @@ -KDUMP_AUTO_RESIZE="false" +KDUMP_AUTO_RESIZE="no" @@ -11,2 +11,2 @@ -KDUMP_IMMEDIATE_REBOOT="true" -KDUMP_KEEP_OLD_DUMPS="0" +KDUMP_IMMEDIATE_REBOOT="yes" +KDUMP_KEEP_OLD_DUMPS="5" @@ -21 +21 @@ -KDUMP_SAVEDIR="/var/crash" +KDUMP_SAVEDIR="file:///var/crash" @@ -28 +28 @@ -KDUMP_VERBOSE="0" +KDUMP_VERBOSE="3" I.e. some now use "yes" / "no" instead of "true" / "false", and some numeric values changed their defaults. I don't see any of this as a bug, much less a YaST bug. Time to adapt that OpenQA test to changing times AFAICS.