Skip to content

Remove verification of installed packages #578

Closed
@frenzymadness

Description

@frenzymadness

We have rpm -V as a verification of installed packages In the Dockerfiles, like this one:

rpm -V $INSTALL_PKGS && \

But this restriction removes the possibility to install packages by their alternative names. For example, Python 3.9 on C9S provides:

# rpm -q --provides python3
platform-python = 3.9.16-1.el9
platform-python(x86-64) = 3.9.16-1.el9
python(abi) = 3.9
python(abi) = 3.9
python3 = 3.9.16-1.el9
python3(x86-64) = 3.9.16-1.el9
python3.9 = 3.9.16-1.el9
python3.9(x86-64) = 3.9.16-1.el9
python39 = 3.9.16-1.el9

so it does not really matters whether I install python3.9 or python39 but the verification step fails in that case because the name of the RPM package is python3 and rpm -V python3.9 fails.

My question is: Why do we need that given the fact that the dnf/microdnf fails if they get an unknown package name to install and their failure stops the build?

Any opinions @hhorak @phracek @pkubatrh @torsava ?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions