forked from pool/rpmlint
773aa7d652
Copy from Base:System/rpmlint based on submit request 19018 from user lnussel OBS-URL: https://build.opensuse.org/request/show/19018 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/rpmlint?expand=0&rev=44
15 lines
874 B
Diff
15 lines
874 B
Diff
Index: FilesCheck.py
|
|
===================================================================
|
|
--- FilesCheck.py.orig
|
|
+++ FilesCheck.py
|
|
@@ -980,7 +980,8 @@ class FilesCheck(AbstractCheck.AbstractC
|
|
(includefile_regex.search(f) or \
|
|
develfile_regex.search(f) or is_buildconfig):
|
|
printWarning(pkg, 'devel-file-in-non-devel-package', f)
|
|
- if mode & 0444 != 0444 and perm & 07000 == 0 and f[0:len('/var/log')] != '/var/log':
|
|
+ if mode & 0444 != 0444 and perm & 07000 == 0 and \
|
|
+ not f.startswith('/var/log/') and not f.startswith('/etc/'):
|
|
printError(pkg, 'non-readable', f, oct(perm))
|
|
if size == 0 and not normal_zero_length_regex.search(f) and f not in ghost_files:
|
|
printError(pkg, 'zero-length', f)
|