mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 08:25:20 +09:00
16 lines
245 B
Bash
16 lines
245 B
Bash
#!/bin/sh
|
|
|
|
if [ -f /etc/sysconfig/udev ]; then
|
|
. /etc/sysconfig/udev
|
|
fi
|
|
|
|
if [ -f /etc/conf.d/udev ]; then
|
|
. /etc/conf.d/udev
|
|
fi
|
|
|
|
[ "$UDEV_DBUS" != "yes" ] && exit 0
|
|
|
|
if [ -x /usr/sbin/udev_dbus ]; then
|
|
exec /usr/sbin/udev_dbus "$@"
|
|
fi
|