rpminspect: Wrap strings with globs with single quotes

It seems to be required since rpminspect 2.0:
1593c38ce4
This commit is contained in:
Lumir Balhar 2025-08-26 10:01:22 +02:00
parent c8e02954a8
commit 06aa41184a

View File

@ -1,22 +1,22 @@
# exclude test XML data (not always valid) from XML validity check: # exclude test XML data (not always valid) from XML validity check:
xml: xml:
ignore: ignore:
- /usr/lib*/python*/test/xmltestdata/* - '/usr/lib*/python*/test/xmltestdata/*'
- /usr/lib*/python*/test/xmltestdata/*/* - '/usr/lib*/python*/test/xmltestdata/*/*'
# exclude _socket from ipv4 only functions check, it has both ipv4 and ipv6 only # exclude _socket from ipv4 only functions check, it has both ipv4 and ipv6 only
badfuncs: badfuncs:
allowed: allowed:
/usr/lib*/python*/lib-dynload/_socket.*: '/usr/lib*/python*/lib-dynload/_socket.*':
- inet_aton - inet_aton
- inet_ntoa - inet_ntoa
# exclude the debug build from annocheck entirely # exclude the debug build from annocheck entirely
annocheck: annocheck:
ignore: ignore:
- /usr/bin/python*d - '/usr/bin/python*d'
- /usr/lib*/libpython*d.so.1.0 - '/usr/lib*/libpython*d.so.1.0'
- /usr/lib*/python*/lib-dynload/*.cpython-*d-*-*-*.so - '/usr/lib*/python*/lib-dynload/*.cpython-*d-*-*-*.so'
# don't report changed content of compiled files # don't report changed content of compiled files
# that is expected with every toolchain update and not reproducible yet # that is expected with every toolchain update and not reproducible yet