forked from pool/rpmlint
- better deal with spaces in logrotate config
- add colord-sane dbus service to whitelist (bnc#752518) OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory:rpmlint/rpmlint?expand=0&rev=107
This commit is contained in:
parent
d055a4f379
commit
fad9b7334a
@ -63,7 +63,8 @@ class LogrotateCheck(AbstractCheck.AbstractCheck):
|
|||||||
if line.endswith('{'):
|
if line.endswith('{'):
|
||||||
insection = True
|
insection = True
|
||||||
for logfile in line.split(' '):
|
for logfile in line.split(' '):
|
||||||
if logfile == '{':
|
logfile = logfile.strip()
|
||||||
|
if len(logfile) == 0 or logfile == '{':
|
||||||
continue
|
continue
|
||||||
dn = os.path.dirname(logfile)
|
dn = os.path.dirname(logfile)
|
||||||
if not dn in dirs:
|
if not dn in dirs:
|
||||||
|
5
config
5
config
@ -1,5 +1,5 @@
|
|||||||
# -*- python -*-
|
# -*- python -*-
|
||||||
# vim: syntax=python
|
# vim: syntax=python sw=4 et
|
||||||
# Configuration for the rpmlint utility.
|
# Configuration for the rpmlint utility.
|
||||||
# Loaded before ~/.rpmlintrc
|
# Loaded before ~/.rpmlintrc
|
||||||
# $Id: config,v 1.39 2003/12/22 11:20:55 flepied Exp $
|
# $Id: config,v 1.39 2003/12/22 11:20:55 flepied Exp $
|
||||||
@ -481,6 +481,9 @@ setOption("DBUSServices.WhiteList", (
|
|||||||
# colord (bnc#698250)
|
# colord (bnc#698250)
|
||||||
"org.freedesktop.ColorManager.service",
|
"org.freedesktop.ColorManager.service",
|
||||||
"org.freedesktop.ColorManager.conf",
|
"org.freedesktop.ColorManager.conf",
|
||||||
|
# colord-sane (bnc#752518)
|
||||||
|
"org.freedesktop.colord-sane.service",
|
||||||
|
"org.freedesktop.colord-sane.conf",
|
||||||
# lightdm (bnc#708205)
|
# lightdm (bnc#708205)
|
||||||
"org.freedesktop.DisplayManager.conf",
|
"org.freedesktop.DisplayManager.conf",
|
||||||
# kdepim4/kalarm (bnc#707723)
|
# kdepim4/kalarm (bnc#707723)
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 20 08:32:33 UTC 2012 - lnussel@suse.de
|
||||||
|
|
||||||
|
- better deal with spaces in logrotate config
|
||||||
|
- add colord-sane dbus service to whitelist (bnc#752518)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Mar 16 14:26:34 CET 2012 - dmueller@suse.de
|
Fri Mar 16 14:26:34 CET 2012 - dmueller@suse.de
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user