summaryrefslogtreecommitdiffstats
path: root/rc.d/net-set-variable
diff options
context:
space:
mode:
Diffstat (limited to 'rc.d/net-set-variable')
-rw-r--r--rc.d/net-set-variable10
1 files changed, 0 insertions, 10 deletions
diff --git a/rc.d/net-set-variable b/rc.d/net-set-variable
deleted file mode 100644
index d2d68fa..0000000
--- a/rc.d/net-set-variable
+++ /dev/null
@@ -1,10 +0,0 @@
-# Set the NET variable if specified on the kernel command line.
-
-net_set_variable() {
- local re="\<NET=([^ ]+)\>"
- if [[ -f /proc/cmdline && $(< /proc/cmdline) =~ $re ]]; then
- export NET=${BASH_REMATCH[1]}
- fi
-}
-
-add_hook multi_start net_set_variable