rpmlint-mini/rpmlint-mini.config
OBS User autobuild 7bd87f6bd7 Accepting request 30232 from Base:System
Copy from Base:System/rpmlint-mini based on submit request 30232 from user lnussel

OBS-URL: https://build.opensuse.org/request/show/30232
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/rpmlint-mini?expand=0&rev=29
2010-01-27 17:29:21 +00:00

14 lines
374 B
Python

#!/usr/bin/python
configs = [ '/opt/testing/share/rpmlint/config' ]
configs += glob.glob("/usr/src/packages/SOURCES/*rpmlintrc")
configs += glob.glob('/opt/testing/share/rpmlint/mini/*.config')
for f in configs:
try:
execfile(f)
except IOError:
pass
except Exception, E:
Pkg.rlwarn('(none): W: error loading %s, skipping: %s' % (f, E))