Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change Default for KDUMP_AUTO_RESIZE to "no" #133

Merged
merged 3 commits into from
Dec 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions package/yast2-kdump.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
-------------------------------------------------------------------
Wed Dec 7 17:14:38 UTC 2022 - Stefan Hundhammer <shundhammer@suse.com>

- Changed default of KDUMP_AUTO_RESIZE to "no" as documented in
https://github.com/openSUSE/kdump/blob/SLE-15-SP5/sysconfig.kdump.in#L57-L65
(bsc#1205816)
- 4.5.6

-------------------------------------------------------------------
Tue Sep 20 08:23:03 UTC 2022 - Michal Filka <mfilka@suse.com>

Expand Down
2 changes: 1 addition & 1 deletion package/yast2-kdump.spec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


Name: yast2-kdump
Version: 4.5.5
Version: 4.5.6
Release: 0
Summary: Configuration of kdump
License: GPL-2.0-only
Expand Down
2 changes: 1 addition & 1 deletion src/modules/Kdump.rb
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def reset
"KDUMP_CPUS" => "",
"KDUMP_COMMANDLINE" => "",
"KDUMP_COMMANDLINE_APPEND" => "",
"KDUMP_AUTO_RESIZE" => "yes",
"KDUMP_AUTO_RESIZE" => "no",
"KEXEC_OPTIONS" => "",
"KDUMP_IMMEDIATE_REBOOT" => "yes",
"KDUMP_COPY_KERNEL" => "yes",
Expand Down
6 changes: 3 additions & 3 deletions test/kdump_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@
end

context "during autoinstallation" do
let(:bootloader_kernel_params) { ["2047M,high"] }
let(:bootloader_kernel_params) { ["73M,high"] }
let(:bootloader_kernel_params_noauto) { ["73M,high"] }
let(:bootloader_xen_kernel_params) { ["73M\\<4G"] }

Expand Down Expand Up @@ -547,7 +547,7 @@
end

context "during autoupgrade" do
let(:bootloader_kernel_params) { ["1968M,high"] }
let(:bootloader_kernel_params) { ["75M,high"] }
let(:bootloader_kernel_params_noauto) { ["75M,high"] }
let(:bootloader_xen_kernel_params) { ["75M\\<4G"] }

Expand Down Expand Up @@ -815,7 +815,7 @@
end

context "on a system with no low/high distinction" do
let(:bootloader_kernel_params) { ["650M"] }
let(:bootloader_kernel_params) { ["93M"] }
let(:bootloader_xen_kernel_params) { ["93M\\<4G"] }

before do
Expand Down