2021-10-04 15:57:59 +02:00
|
|
|
# ignore hidden files and executable bits in overlay
|
|
|
|
# directories, as this files are meant to be run on
|
|
|
|
# compute nodes
|
|
|
|
addFilter("hidden-file-or-dir /var/lib/warewulf/overlays/,*")
|
|
|
|
addFilter("non-executable-script /var/lib/warewulf/overlays/.*")
|
2024-02-12 22:54:08 +01:00
|
|
|
# wwclient is called on a compute node *before* systemd in
|
2021-10-04 15:57:59 +02:00
|
|
|
# order to provision the system, so it *must* be statically linked
|
2024-02-12 22:54:08 +01:00
|
|
|
addFilter("statically-linked-binary .*/wwclient")
|
|
|
|
addFilter("shared-lib-without-dependency-information .*/wwclient")
|
2021-10-04 15:57:59 +02:00
|
|
|
# go binaries are hard to strip
|
|
|
|
addFilter("unstripped-binary-or-object.*")
|
2024-02-12 22:54:08 +01:00
|
|
|
# Intentional - symlinks will be copied to the client
|
|
|
|
addFilter("dangling-symlink .*/warewulf/overlays")
|
|
|
|
# LOL. Not every changelog entry marks a version update.
|
|
|
|
addFilter("no-version-in-last-changelog")
|
|
|
|
# C'on, really? We have to build for multiple target version with different rpmlint settings.
|
|
|
|
addFilter("unused-rpmlintrc-filter")
|
2023-09-21 14:27:13 +02:00
|
|
|
# ignore the binary in /usr/share as this binary will to the nodes and not run on
|
2024-02-12 22:54:08 +01:00
|
|
|
# the host where the rpm is installed.
|
|
|
|
# addFilter("arch-dependent-file-in-usr-share")
|