void-packages/srcpkgs/xbps-triggers/files/kernel-hooks
maxice8 2aef1b2991 xbps-triggers: rework some triggers
This lists changes per-trigger, triggers that changed the same thing
are listed under the same group

appstream-cache:
gconf-schemas:
gdk-pixbuf-loaders:
gsettings-schemas:
kernel-hooks:
mkdirs:
pango-modules:
register-shell:
update-dektopdb:
update-desktopdb:
x11-fonts:

- remove useless PATH expansion that is already done in the hook script.

gtk-icon-cache:
gtk-immodules:
gtk3-immodules:

- remove useless PATH expansion that is already done in the hook script.
- use exit 0 instead of break

hwdb.d:

- check if tooling is available

info-files

- Remove support for using host tooling

mimedb:

- remove useless PATH expansion that is already done in the hook script.
- check if tooling is available

xml-catalog:

- remove useless PATH expansion that is already done in the hook script.
- add a xmlcatmgr variable so that the first check not always fails

[ci skip]
2018-11-17 21:39:19 -02:00

53 lines
1.1 KiB
Bash
Executable file

#!/bin/sh
#
# Run scripts found in /etc/kernel.d/ directories.
#
# Arguments: $ACTION = [run/targets]
# $TARGET = [post-install/post-remove]
# $PKGNAME
# $VERSION
# $UPDATE = [yes/no]
#
ACTION="$1"
TARGET="$2"
PKGNAME="$3"
VERSION="$4"
UPDATE="$5"
RUN_TARGETS="pre-install post-install pre-remove post-remove"
case "$ACTION" in
targets)
echo "${RUN_TARGETS}"
;;
run)
# Ignore pre-remove when updating a package.
if [ "${TARGET}" = "pre-remove" ]; then
[ "${UPDATE}" = "yes" ] && exit 0
fi
# Create required dirs when necessary.
for _dir_ in ${RUN_TARGETS}; do
[ ! -d etc/kernel.d/${_dir_} ] && mkdir -p etc/kernel.d/${_dir_}
done
# Execute kernel hooks for the specified target.
for _file_ in etc/kernel.d/${TARGET}/*; do
[ ! -x "${_file_}" ] && continue
echo "Executing ${TARGET} kernel hook: $(basename ${_file_}) ..."
# A package may export "kernel_hooks_version" as a hint
# to pass this version to the hooks.
if [ -n "${kernel_hooks_version}" ]; then
env ROOTDIR="." ${_file_} ${PKGNAME} ${kernel_hooks_version}
else
env ROOTDIR="." ${_file_} ${PKGNAME} ${VERSION}
fi
done
;;
*)
exit 1
;;
esac
exit 0