mirror of
https://github.com/systemd/systemd.git
synced 2024-11-27 12:13:33 +08:00
udev: enable persistent network device naming
This commit is contained in:
parent
b86d11da80
commit
394e2938ff
@ -1838,6 +1838,7 @@ dist_udevrules_DATA += \
|
||||
rules/75-net-description.rules \
|
||||
rules/75-tty-description.rules \
|
||||
rules/78-sound-card.rules \
|
||||
rules/80-net-name-slot.rules \
|
||||
rules/95-udev-late.rules
|
||||
|
||||
if HAVE_KMOD
|
||||
|
11
rules/80-net-name-slot.rules
Normal file
11
rules/80-net-name-slot.rules
Normal file
@ -0,0 +1,11 @@
|
||||
# do not edit this file, it will be overwritten on update
|
||||
|
||||
ACTION=="remove", GOTO="net_name_slot_end"
|
||||
SUBSYSTEM!="net", GOTO="net_name_slot_end"
|
||||
NAME!="", GOTO="net_name_slot_end"
|
||||
|
||||
ENV{ID_NET_NAME_ONBOARD}!="", NAME="$env{ID_NET_NAME_ONBOARD}"
|
||||
ENV{ID_NET_NAME_SLOT}!="", NAME="$env{ID_NET_NAME_SLOT}"
|
||||
ENV{ID_NET_NAME_PATH}!="", NAME="$env{ID_NET_NAME_PATH}"
|
||||
|
||||
LABEL="net_name_slot_end"
|
Loading…
Reference in New Issue
Block a user