void-packages/srcpkgs/xbps-triggers/files/hwdb.d-dir

30 lines
370 B
Bash
Executable File

#!/bin/sh
#
# Updates hardware database
#
# Arguments: $ACTION = [run/targets]
# $TARGET = [post-install/pre-remove]
# $PKGNAME
# $VERSION
# $UPDATE = [yes/no]
#
ACTION="$1"
TARGET="$2"
PKGNAME="$3"
VERSION="$4"
UPDATE="$5"
case "$ACTION" in
targets)
echo "post-install pre-remove"
;;
run)
usr/bin/udevadm hwdb --root=. --update
;;
*)
exit 1
;;
esac
exit 0