You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
791 B
21 lines
791 B
#!/bin/sh |
|
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*- |
|
# ex: ts=8 sw=4 sts=4 et filetype=sh |
|
|
|
# if there are no ifname parameters, just use NAME=KERNEL |
|
if ! getarg ifname= >/dev/null ; then |
|
return |
|
fi |
|
|
|
{ |
|
for p in $(getargs ifname=); do |
|
parse_ifname_opts $p |
|
printf 'SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="%s", ATTR{type}=="1", NAME="%s"\n' "$ifname_mac" "$ifname_if" |
|
done |
|
|
|
# Rename non named interfaces out of the way for named ones. |
|
for p in $(getargs ifname=); do |
|
parse_ifname_opts $p |
|
printf 'SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="?*", ATTR{type}=="1", NAME!="?*", KERNEL=="%s", NAME="%%k-renamed"\n' "$ifname_if" |
|
done |
|
} > /etc/udev/rules.d/50-ifname.rules
|
|
|