forked from pool/warewulf4
highlights: * renamed container to images * "sprig" functions in overlays * support for yaml and json formatted output * completely re-designed kernel selection support * nested profiles * arbitrary node and profile data in new "resources" structure * moved NFS mount options to resources / fstab overlay * split overlays by function * split overlays, site vs distribution * replaced defaults.conf with settings on default profile * improved tabular output * parallel overlay build * improved networking functionality (static route, vlans, and bonds) * kernel arguments as a list * non-zero exit codes on wwctl errors * fixed argument parsing for wwctl image exec * Defined menu for ipxe boot * Re-order SSH key types to make ed25519 default. - The configuation files nodes.conf and warewulf.conf will be updated on upgrade and the unmodified configuration files will be saved as nodes.conf.4.5.x and warewulf.conf.4.5.x OBS-URL: https://build.opensuse.org/package/show/network:cluster/warewulf4?expand=0&rev=99
21 lines
1.0 KiB
Plaintext
21 lines
1.0 KiB
Plaintext
# 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 node *before* systemd in
|
|
# order to provision the system, so it *must* be statically linked
|
|
addFilter("statically-linked-binary .*/wwclient")
|
|
addFilter("shared-lib-without-dependency-information .*/wwclient")
|
|
# go binaries are hard to strip
|
|
addFilter("unstripped-binary-or-object.*")
|
|
# 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")
|
|
# 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")
|