Files
vuinputd/debian/vuinputd.postinst
2025-12-25 21:32:07 +00:00

16 lines
292 B
Bash
Executable File

#!/bin/sh
set -e
if [ "$1" = "configure" ]; then
if command -v systemd-hwdb >/dev/null 2>&1; then
systemd-hwdb update || true
fi
if command -v udevadm >/dev/null 2>&1; then
udevadm control --reload-rules || true
udevadm trigger || true
fi
fi
exit 0