Release 1 contains the following packages
Package A-1.0
Package B-1.0
Release 2 contains the following packages
Package A-2.0
Package B-2.0
Package C-2.0
In Release 2, Package B-1.0
was split into two packages - package B-2.0
and package C-2.0
.
Now when Release 2 is installed, how do I downgrade to Release 1?
yum downgrade A B
tries to install package B-1.0
which has file conflicts with package C-2.0
.
yum downgrade A B C
does not work because there is no older version for Package C
.
Is there a single command through which it erases the new package (package C-2.0
) and downgrades packages A and B?