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

ltp: Lock kernel-default on transactional system and RT flavors #19941

Merged
merged 1 commit into from
Aug 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tests/kernel/install_ltp.pm
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,10 @@ sub run {
# Enables repositories on full installation medium
zypper_enable_install_dvd if (get_var('FLAVOR') eq 'Full-QR');

# Lock kernel default on transactional system and RT flavors
# This is workaround for poo#165036 to prevent kernel-default and kernel-default-base installation
zypper_call("al kernel-default kernel-default-base") if (is_transactional && (get_var('FLAVOR', '') =~ /Base-RT-Updates|Base-RT|Base-RT-encrypted/));

if ($inst_ltp =~ /git/i) {
install_build_dependencies;
install_runtime_dependencies;
Expand Down
Loading