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

Remove workaround for bsc#1224249 #20861

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
8 changes: 0 additions & 8 deletions tests/migration/online_migration/zypper_patch.pm
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,6 @@ sub run {
modify_kernel_multiversion("disable");
}
workaround_bsc_1220091;
# Workaround of bsc#1224249, remove python3-argcomplete-1.9.2-150000.3.8.1 before migration
# because the higher python3-argcomplete version is not synced to SLES15SP6 update channel yet
# It will be only few weeks after the GM, will remove this workaround then
my $pkg = 'python3-argcomplete-1.9.2-150000.3.8.1';
if ((check_var("MIGRATION_METHOD", "zypper")) && (script_run("rpm -q $pkg")) == 0) {
record_soft_failure "Workaround for bsc#1224249: remove $pkg before migration";
zypper_call("rm $pkg");
}
cleanup_disk_space if get_var('REMOVE_SNAPSHOTS');
# Sometimes we can't wait the grub screen before it booting into system,
# we can change the GRUB_TIMEOUT in /etc/default/grub to fix this.
Expand Down
Loading