forked from pool/rpmlint
ce393e019d
Accepted submit request 51111 from user prusnak OBS-URL: https://build.opensuse.org/request/show/51111 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/rpmlint?expand=0&rev=70
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)
|
|
@@ -53,6 +53,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:
|