mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
788c5195f3
This reverts commit 45c5a915980fbe1fa6f0ff80ab2d11b60b844d9e. This breaks PredictableNetworkInterfaceNames on systems without networkd. We should only include this file from systemd, when networkd is enabled.
13 lines
462 B
Text
13 lines
462 B
Text
# Copied from systemd 203.
|
|
ACTION=="remove", GOTO="net_name_slot_end"
|
|
SUBSYSTEM!="net", GOTO="net_name_slot_end"
|
|
NAME!="", GOTO="net_name_slot_end"
|
|
|
|
IMPORT{cmdline}="net.ifnames"
|
|
ENV{net.ifnames}=="0", GOTO="net_name_slot_end"
|
|
|
|
NAME=="", ENV{ID_NET_NAME_ONBOARD}!="", NAME="$env{ID_NET_NAME_ONBOARD}"
|
|
NAME=="", ENV{ID_NET_NAME_SLOT}!="", NAME="$env{ID_NET_NAME_SLOT}"
|
|
NAME=="", ENV{ID_NET_NAME_PATH}!="", NAME="$env{ID_NET_NAME_PATH}"
|
|
|
|
LABEL="net_name_slot_end"
|