What were you trying to do that didn't work?
Updateinfo should take a package with NEVRA as an input.
What is the impact of this issue to you?
It is complicated to find release date of specific package with NEVRA
Please provide the package NVR for which the bug is seen:
dnf-4.14.0-31.el9.noarch
How reproducible is this bug?:
100%
Steps to reproduce
- Below command did not work to check information about specific package with NEVRA e.g. openssl
# dnf updateinfo openssl-<version> --info
- We need to execute which shows information about all openssl packages.
#dnf updateinfo openssl --info --all
Expected results:
e.g. openssl-3.5.1-4.el9_7.x86_64
# dnf updateinfo openssl-3.5.1-4.el9_7.x86_64 --info
Actual results:
Not possible currently.
NOTE:
For finding release date of openssl-1.1.1k-14.el8_6.x86_64 ,We are able to find by below command on registered system to Customer portal or Satellite.
#Update_Id=$(dnf updateinfo openssl --list --all | grep 1.1.1k-14.el8_6.x86_64 |awk '{print ($1 == "i" ? $2 : $1)}');dnf updateinfo $Update_Id --info |grep Updated