forked from pool/rpmlint
Dirk Mueller
15bad7fc73
* New Homepage * Plenty of new checks - add compressed-backup-regex.diff - remove python3_magic_number_fix.diff OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory:rpmlint/rpmlint?expand=0&rev=189
49 lines
1.9 KiB
Diff
49 lines
1.9 KiB
Diff
Index: InitScriptCheck.py
|
|
===================================================================
|
|
--- InitScriptCheck.py.orig
|
|
+++ InitScriptCheck.py
|
|
@@ -50,7 +50,7 @@ class InitScriptCheck(AbstractCheck.Abst
|
|
return
|
|
|
|
initscript_list = []
|
|
-
|
|
+ rclinks = set()
|
|
|
|
# check chkconfig call in %post and %preun
|
|
postin = pkg[rpm.RPMTAG_POSTIN] or pkg.scriptprog(pkg[rpm.RPMTAG_POSTINPROG])
|
|
@@ -59,6 +59,10 @@ class InitScriptCheck(AbstractCheck.Abst
|
|
|
|
for fname, pkgfile in pkg.files().items():
|
|
|
|
+ if stat.S_ISLNK(pkgfile.mode) and (fname.startswith("/usr/sbin/rc") \
|
|
+ or fname.startswith("/sbin/rc")):
|
|
+ rclinks.add(fname.partition('/rc')[2])
|
|
+
|
|
if not fname.startswith('/etc/init.d/') and \
|
|
not fname.startswith('/etc/rc.d/init.d/'):
|
|
continue
|
|
@@ -198,6 +202,12 @@ class InitScriptCheck(AbstractCheck.Abst
|
|
elif subsys_regex_found and not use_subsys:
|
|
printError(pkg, 'subsys-unsupported', fname)
|
|
|
|
+ for script in initscript_list:
|
|
+ if script.startswith("rc") or script.startswith("boot."):
|
|
+ continue
|
|
+ if not script in rclinks:
|
|
+ printWarning(pkg, 'suse-missing-rclink', script)
|
|
+
|
|
if len(initscript_list) == 1:
|
|
pkgname = re.sub("-sysvinit$", "", pkg.name.lower())
|
|
goodnames = (pkgname, pkgname + 'd')
|
|
@@ -222,6 +232,10 @@ a call to chkconfig.''',
|
|
'''The package contains an init script but doesn't contain a %preun with
|
|
a call to chkconfig.''',
|
|
|
|
+'suse-missing-rclink',
|
|
+'''The package contains an init script with the given name but does not
|
|
+contain the SUSE policy symlink /usr/sbin/rcFOO -> /etc/init.d/FOO''',
|
|
+
|
|
'preun-without-chkconfig',
|
|
'''The package contains an init script but doesn't call chkconfig in its
|
|
%preun script.''',
|