Ticket #959: vflags.patch
File vflags.patch, 903 bytes (added by Joe Digilio <[email protected]…>, 12 years ago) |
---|
-
/usr/lib/python2.4/site-packages/Bcfg2/Client/Tools/YUMng.py
old new 427 427 stat['verify_fail'] = False 428 428 stat['pkg'] = entry 429 429 stat['modlist'] = modlist 430 verify_flags = inst.get('verify_flags','').lower().replace(' ','').split(',') 430 431 431 432 if len(POs) == 0: 432 433 # Package not installed … … 495 496 for p in probs: 496 497 if p.type == 'missing' and os.path.islink(fn): 497 498 continue 499 elif 'no'+p.type in verify_flags: 500 continue 498 501 if p.type not in ['missingok', 'ghost']: 499 502 tmp.append((p.type, p.message)) 500 503 if tmp != []: