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/.*")
|
|
|
|
# wwclient is called on a compute *before* systemd in
|
|
|
|
# order to provision the system, so it *must* be statically linked
|
|
|
|
addFilter("statically-linked-binary /var/lib/warewulf/overlays/system/default/warewulf/bin/wwclient")
|
|
|
|
# go binaries are hard to strip
|
|
|
|
addFilter("unstripped-binary-or-object.*")
|
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
|
|
|
|
# the host where the rpm is installed
|
|
|
|
addFilter("arch-dependent-file-in-usr-share")
|