eudev/etc/udev/redhat/51-hotplug.rules

16 lines
471 B
Plaintext
Raw Normal View History

2005-12-04 08:52:57 +07:00
# do not call hotplug.d and dev.d for "drivers" and "module" events
2006-02-16 02:57:29 +07:00
SUBSYSTEM=="drivers", GOTO="hotplug_end"
SUBSYSTEM=="module", GOTO="hotplug_end"
2006-05-23 19:30:06 +07:00
ACTION=="add", GOTO="hotplug_comp"
ACTION=="remove", GOTO="hotplug_comp"
2005-12-04 08:52:57 +07:00
2006-02-16 02:57:29 +07:00
GOTO="hotplug_end"
LABEL="hotplug_comp"
2005-12-04 08:52:57 +07:00
# compatibility support for the obsolete hotplug.d and dev.d directories
2006-02-16 02:57:29 +07:00
ENV{UDEVD_EVENT}=="1", RUN+="/lib/udev/udev_run_hotplugd"
2005-12-04 08:52:57 +07:00
RUN+="/lib/udev/udev_run_devd"
2006-02-16 02:57:29 +07:00
LABEL="hotplug_end"