diff options
Diffstat (limited to 'nonsystemd/xudev/udev-hook')
-rw-r--r-- | nonsystemd/xudev/udev-hook | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/nonsystemd/xudev/udev-hook b/nonsystemd/xudev/udev-hook new file mode 100644 index 000000000..327039741 --- /dev/null +++ b/nonsystemd/xudev/udev-hook @@ -0,0 +1,21 @@ +#!/bin/sh -e + +udevd_live() { + if [ ! -d /run/udev ]; then + echo >&2 " Skipped: Device manager is not running." + exit 0 + fi +} + +op="$1"; shift + +case "$op" in + #hwdb) /usr/bin/udev-hwdb --usr update ;; + hwdb) /usr/bin/udevadm hwdb --update ;; + + udev-reload) udevd_live; /usr/bin/udevadm control --reload ;; + + *) echo >&2 " Invalid operation '$op'"; exit 1 ;; +esac + +exit 0 |