summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'init.d/udev')
-rw-r--r--init.d/udev26
1 files changed, 13 insertions, 13 deletions
diff --git a/init.d/udev b/init.d/udev
index 0a95873..193adf7 100644
--- a/init.d/udev
+++ b/init.d/udev
@@ -70,6 +70,19 @@ check_kernel()
return 0
}
+disable_oldnet_hotplug()
+{
+ if is_service_enabled network; then
+ # disable network hotplugging
+ local d="/run/udev/rules.d"
+ mkdir -p "${d}"
+ local f="${d}/90-network.rules"
+ echo "# This file disables network hotplug events calling" >> "${f}"
+ echo "# old-style openrc net scripts" >> "${f}"
+ echo "# as we use /etc/init.d/network to set up our network" >> "${f}"
+ fi
+}
+
start_pre()
{
check_kernel || return 1
@@ -118,19 +131,6 @@ is_service_enabled()
return 1
}
-disable_oldnet_hotplug()
-{
- if is_service_enabled network; then
- # disable network hotplugging
- local d="/run/udev/rules.d"
- mkdir -p "${d}"
- local f="${d}/90-network.rules"
- echo "# This file disables network hotplug events calling" >> "${f}"
- echo "# old-style openrc net scripts" >> "${f}"
- echo "# as we use /etc/init.d/network to set up our network" >> "${f}"
- fi
-}
-
start_udevmonitor()
{
yesno "${udev_monitor}" || return 0