mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-19 15:32:59 +02:00
The VLAN hotplugging script was called with a wrong parameter that should just be used to rename devices. Hence the script was not correctly executed and did not create the virtual devices. Fixes: #11009 Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
8 lines
408 B
Plaintext
8 lines
408 B
Plaintext
# Call a script that checks for the right name of the new device.
|
|
# If it matches the configuration it will be renamed accordingly.
|
|
ACTION=="add", SUBSYSTEM=="net", PROGRAM="/lib/udev/network-hotplug-rename", RESULT=="?*", NAME="$result"
|
|
|
|
# Call a script that will create all virtual devices for a parent device
|
|
# that has just come up.
|
|
ACTION=="add", SUBSYSTEM=="net", RUN+="/lib/udev/network-hotplug-vlan"
|