summaryrefslogtreecommitdiff
path: root/extras/rule_generator/75-persistent-net-generator.rules
blob: fdebb919bc5725a15778081b9cb850a0b6cd79b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# these rules generate rules for persistent network device naming

ACTION=="add", SUBSYSTEM=="net", NAME!="?*", DRIVERS=="?*", GOTO="persistent_net_generator_do"
GOTO="persistent_net_generator_end"

LABEL="persistent_net_generator_do"
# export device description to comment the generated rule
SUBSYSTEMS=="pci", ENV{COMMENT}="PCI Device: $attr{vendor}:$attr{device} ($attr{driver})"
SUBSYSTEMS=="usb", ENV{COMMENT}="USB Device: 0x$attr{idVendor}:0x$attr{idProduct} ($attr{driver})"
SUBSYSTEMS=="ieee1394", ENV{COMMENT}="Firewire Device: $attr{host_id} ($attr{driver})"
SUBSYSTEMS=="xen", ENV{COMMENT}="Xen virtual device"

KERNEL=="eth*|ath*|wlan*|ra*|sta*", IMPORT{program}="write_net_rules $attr{address}"
ENV{INTERFACE_NEW}=="?*", NAME="$env{INTERFACE_NEW}"

LABEL="persistent_net_generator_end"