summaryrefslogtreecommitdiff
path: root/etc/dev.d/net
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@suse.de>2005-08-09 20:11:26 +0200
committerKay Sievers <kay.sievers@suse.de>2005-08-09 20:11:26 +0200
commita37610d0f885ee301fd99757beb9fd7af729307f (patch)
treeeeb6913ba7c6a95f591b9b3db4f84b5277d791cd /etc/dev.d/net
parent34c00c915c6dd9d063551732169cb3c3126376ad (diff)
remove example rules and put the dev.d stuff into the run_directory folder
The distro rules are the best example you can get and the use of dev.d/ is no longer recommended. Signed-off-by: Kay Sievers <kay.sievers@suse.de>
Diffstat (limited to 'etc/dev.d/net')
-rw-r--r--etc/dev.d/net/hotplug.dev21
1 files changed, 0 insertions, 21 deletions
diff --git a/etc/dev.d/net/hotplug.dev b/etc/dev.d/net/hotplug.dev
deleted file mode 100644
index e195b0f034..0000000000
--- a/etc/dev.d/net/hotplug.dev
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/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
-