overlay coreos/config: Add a default config for dev-util/pkgcheck

This commit is contained in:
Krzesimir Nowak 2024-09-04 15:46:57 +02:00
parent 2d1c959b8f
commit fa404f874e

View File

@ -0,0 +1,9 @@
cros_post_src_install_create_default_config() {
dodir /etc/pkgcheck
# these must be indented with tabs, bash only strips leading
# tabs with "<<-", leading spaces won't do.
cat <<- EOF >"${ED}/etc/pkgcheck/pkgcheck.conf" || die
[DEFAULT]
keywords = -NonexistentDeps,-NonsolvableDepsInDev,-NonsolvableDepsInExp,-NonsolvableDepsInStable
EOF
}