base-files: make some sysctls like kexec setting user-alterable

While at it, relax the pkglint for base-files only.
This commit is contained in:
q66 2021-02-28 01:34:19 +01:00
parent be6bfce212
commit 5949392125
4 changed files with 32 additions and 16 deletions

View file

@ -83,12 +83,17 @@ hook() {
# Prevent packages from installing to these paths in etc, they should use
# their equivalent in usr/lib
for f in udev/{rules.d,hwdb.d} modprobe.d sysctl.d; do
if [ -d ${PKGDESTDIR}/etc/${f} ]; then
msg_red "${pkgver}: /etc/${f} is forbidden. Use /usr/lib/${f}.\n"
error=1
fi
done
#
# But base-files is a special case, since it may contains suggested but
# still user-alterable default files (particularly sysctl.d)
if [ "${pkgname}" != "base-files" ]; then
for f in udev/{rules.d,hwdb.d} modprobe.d sysctl.d; do
if [ -d ${PKGDESTDIR}/etc/${f} ]; then
msg_red "${pkgver}: /etc/${f} is forbidden. Use /usr/lib/${f}.\n"
error=1
fi
done
fi
# Likewise with the comment above but for usr/share
for f in X11/xorg.conf.d gconf/schemas; do