1# /etc/udev/rules/95-udev-late.rules:  device naming rules for udev
2#
3# Gentoo specific rules
4#
5# There are a number of modifiers that are allowed to be used in some of the
6# fields.  See the udev man page for a full description of them.
7#
8# Try not to modify this file, if you wish to change things, create a new rule
9# file that can be run before this one.
10#
11
12# Activate our network if we can
13SUBSYSTEM=="net", ACTION=="add",    RUN+="net.sh %k start"
14SUBSYSTEM=="net", ACTION=="remove", RUN+="net.sh %k stop"
15
16# event to be catched by udevmonitor
17RUN+="socket:/org/kernel/udev/monitor"
18
19