1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#!/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