diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2015-06-02 10:09:25 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2015-06-02 10:10:45 -0400 |
commit | 2eba1b80553e02054f649790b3b3dd426399b351 (patch) | |
tree | b21ae57204612f1ef4408f43181f7b0bc1225fbd /rules/80-net-name-slot.rules | |
parent | ebb37f6a47f64314a81b40e3befbe3fc9ced8f4a (diff) |
80-net-name-slot.rules: restored for issue #117.
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'rules/80-net-name-slot.rules')
-rw-r--r-- | rules/80-net-name-slot.rules | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/rules/80-net-name-slot.rules b/rules/80-net-name-slot.rules new file mode 100644 index 0000000000..c5f1b3885b --- /dev/null +++ b/rules/80-net-name-slot.rules @@ -0,0 +1,14 @@ +# do not edit this file, it will be overwritten on update + +ACTION!="add", 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" |