]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/commitdiff
udev: Fix calling VLAN script
authorMichael Tremer <michael.tremer@ipfire.org>
Sun, 28 Feb 2016 20:27:06 +0000 (12:27 -0800)
committerMichael Tremer <michael.tremer@ipfire.org>
Sun, 28 Feb 2016 20:29:45 +0000 (12:29 -0800)
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>
config/rootfiles/core/100/filelists/files
config/udev/60-net.rules

index 1202ea84855286fa51e7db7172ca2b894cf92342..b3cd418fa3a12682ce7baa14d70c03cfaca91fa2 100644 (file)
@@ -6,6 +6,7 @@ etc/rc.d/init.d/firewall
 etc/rc.d/init.d/functions
 etc/rc.d/init.d/networking/dhcpcd.exe
 etc/modprobe.d/nf_conntrack.conf
+lib/udev/rules.d/60-net.rules
 srv/web/ipfire/cgi-bin/logs.cgi/firewalllog.dat
 srv/web/ipfire/cgi-bin/logs.cgi/firewalllogcountry.dat
 srv/web/ipfire/cgi-bin/logs.cgi/firewalllogip.dat
index dc39ff09b3c6440ef314cf0a8d11fb9460e3cc19..e82320cfe4ddb344cab26f2895ecb9ac0a276a2c 100644 (file)
@@ -4,4 +4,4 @@ ACTION=="add", SUBSYSTEM=="net", PROGRAM="/lib/udev/network-hotplug-rename", RES
 
 # Call a script that will create all virtual devices for a parent device
 # that has just come up.
-ACTION=="add", SUBSYSTEM=="net", PROGRAM="/lib/udev/network-hotplug-vlan"
+ACTION=="add", SUBSYSTEM=="net", RUN+="/lib/udev/network-hotplug-vlan"