7bd87f6bd7
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
14 lines
374 B
Python
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))
|