forked from pool/rpmlint
10a26d790a
Accepted submit request 67998 from user coolo OBS-URL: https://build.opensuse.org/request/show/67998 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/rpmlint?expand=0&rev=101
24 lines
807 B
Diff
24 lines
807 B
Diff
Index: InitScriptCheck.py
|
|
===================================================================
|
|
--- InitScriptCheck.py.orig
|
|
+++ InitScriptCheck.py
|
|
@@ -18,7 +18,7 @@ from Filter import addDetails, printErro
|
|
import AbstractCheck
|
|
import Config
|
|
import Pkg
|
|
-
|
|
+import stat
|
|
|
|
chkconfig_content_regex = re.compile('^\s*#\s*chkconfig:\s*([-0-9]+)\s+[-0-9]+\s+[-0-9]+')
|
|
subsys_regex = re.compile('/var/lock/subsys/([^/"\'\n\s;&|]+)', re.MULTILINE)
|
|
@@ -64,6 +64,9 @@ class InitScriptCheck(AbstractCheck.Abst
|
|
not fname.startswith('/etc/rc.d/init.d/'):
|
|
continue
|
|
|
|
+ if not stat.S_ISREG(pkgfile.mode):
|
|
+ continue
|
|
+
|
|
basename = os.path.basename(fname)
|
|
initscript_list.append(basename)
|
|
if pkgfile.mode & 0500 != 0500:
|