Bug 1127783

Summary: yum post transaction doesn't handle wildcards on filenames properly
Product: Red Hat Enterprise Linux 7 Reporter: Karel Srot <ksrot>
Component: yum-utilsAssignee: Michal Domonkos <mdomonko>
Status: CLOSED NEXTRELEASE QA Contact: Eva Mrakova <emrakova>
Severity: low Docs Contact:
Priority: low    
Version: 7.0CC: emrakova, mdomonko, vmukhame
Target Milestone: rc   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: If docs needed, set a value
Doc Text:
Story Points: ---
Clone Of: 1099338 Environment:
Last Closed: 2017-11-03 15:34:45 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Karel Srot 2014-08-07 14:35:19 UTC
Present also on RHEL-7.0 with yum-utils-1.1.31-25.el7_0

+++ This bug was initially created as a clone of Bug #1099338 +++

Description of problem:

E.g. suppose I have a package 
  tst1234pkgA containing /usr/local/tst1234pkgA
and package
  tst1234pkgB containing /usr/local/tst1234pkgB

When I configure action as follows:

/usr/local/tst1234pkg*:any:/bin/echo $name $arch $ver $rel $epoch $repoid $state

and remove both packages only one action is executed (e.g. for package tst1234pkgB). The behavior is same also for install action (and probably also update action). 

Version-Release number of selected component (if applicable):
yum-utils-1.1.30-17.el6_5 and 1.1.30-23.el6

How reproducible:
always

Steps to Reproduce:
1. see above

Actual results:
configured action is executed just for the one package, in this case:
tst1234pkgB noarch 1.0 1 0 installed remove

Expected results:
action is executed for each package containing file matching the pattern
tst1234pkgA noarch 1.0 2 0 installed remove
tst1234pkgB noarch 1.0 1 0 installed remove


Additional info:
Proposed behavior would make it compliant with matching against package name. Currently package name pattern "tst1234pkg*" would result in:
tst1234pkgA noarch 1.0 2 0 installed remove
tst1234pkgB noarch 1.0 1 0 installed remove
Also, see bug 1045494 where the remove part was fixed.