forked from pool/rpmlint
Dirk Mueller
b0b29cefb3
* 0001-Python-3-compatibility-tweaks.patch - Change openstack- related users to non-prefixed variants, as they get renamed with the switch to Icehouse OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory:rpmlint/rpmlint?expand=0&rev=244
24 lines
825 B
Diff
24 lines
825 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 & int("500", 8) != int("500", 8):
|