mirror of
https://github.com/joleuger/vuinputd.git
synced 2026-07-03 13:56:58 +00:00
16 lines
292 B
Bash
Executable File
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
|