summaryrefslogtreecommitdiff
path: root/etc/dev.d/net/hotplug.dev
blob: e195b0f034f900a8bcec3f0021f9c3c30e80407f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh
#
# Script to ensure that any network device that udev renames
# still gets the hotplug script run with the proper name.
#
# Released under the GPL v2
#
# Copyright (C) 2004 Greg Kroah-Hartman <greg@kroah.com>
#

# Do nothing if udev handles hotplug.d.
if [ "$MANAGED_EVENT" == "1" ]; then
	exit 0
fi

# ok, we have renamed this device, so let the network hotplug script
# know about it to setup the device properly...
if [ -f /etc/hotplug.d/default/default.hotplug ]; then
	exec /etc/hotplug.d/default/default.hotplug net
fi