Skip to content

Commit

Permalink
Avoid unselecting the base product (bsc#1165501)
Browse files Browse the repository at this point in the history
During debugging it turned out that the base product (like SLES)
was deselected at this point. Because it is later again selected by solver
by other modules dependencies it did not make any problems. But lets fix
it to be on the safe side.

In an Offline installation this is called at a different place and does
not make troubles so handle only the Online case.

- 4.2.58
  • Loading branch information
lslezak committed Mar 6, 2020
1 parent c0b13a4 commit f84f34c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions package/yast2-packager.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Fri Mar 6 09:11:15 UTC 2020 - Ladislav Slezák <lslezak@suse.cz>

- Avoid unselecting the base product (related to bsc#1165501)
- 4.2.58

-------------------------------------------------------------------
Thu Mar 5 16:21:35 UTC 2020 - José Iván López González <jlopez@suse.com>

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


Name: yast2-packager
Version: 4.2.57
Version: 4.2.58
Release: 0
Summary: YaST2 - Package Library
License: GPL-2.0-or-later
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def adjust_base_product_selection
elsif products.size == 1
products.first.select
else
products.each(&:restore)
products.each(&:restore) unless Y2Packager::MediumType.online?
end
end

Expand Down

0 comments on commit f84f34c

Please sign in to comment.