Bug 126357

Summary: Ability to verify, from .rpm package, *only* packages that are installed.
Product: [Fedora] Fedora Reporter: Ben Smith <fedora>
Component: rpmAssignee: Jeff Johnson <jbj>
Status: CLOSED WORKSFORME QA Contact: Mike McLean <mikem>
Severity: medium Docs Contact:
Priority: medium    
Version: 1Keywords: FutureFeature
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Enhancement
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2004-06-20 13:51:52 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Ben Smith 2004-06-20 02:58:32 UTC
Description of problem:
I'd like to be able to verify, from a directory of rpm packages, only
those packages which are installed on the system, and ignore all others.

I know I can do this with a little scripting, but it's quite slow and
cumbersome.

Comment 1 Jeff Johnson 2004-06-20 13:51:52 UTC
You want to verify installed headers and files from the original
packages? Try
    cd /directory/of/rpms
    rpm -Vp *.rpm 2>&1 | grep -v missing
is neither slow nor cumbersome.

Not exactly what you asked for, as files that have been erased
in installed packages will be undetected, but pretty darn close.