summaryrefslogtreecommitdiff
path: root/openwrt/rhctl/files/udev.init
diff options
context:
space:
mode:
Diffstat (limited to 'openwrt/rhctl/files/udev.init')
-rw-r--r--openwrt/rhctl/files/udev.init25
1 files changed, 0 insertions, 25 deletions
diff --git a/openwrt/rhctl/files/udev.init b/openwrt/rhctl/files/udev.init
deleted file mode 100644
index 76796fe..0000000
--- a/openwrt/rhctl/files/udev.init
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh /etc/rc.common
-START=69
-
-BIN=udevd
-DAEMON=/sbin/$BIN
-TRIGGER=/sbin/udevtrigger
-SETTLE=/sbin/udevsettle
-OPTIONS="--daemon"
-DESC=$BIN
-
-start() {
- echo -n "Starting $DESC:"
- $DAEMON $OPTIONS
- echo -n " triggering .. "
- $TRIGGER
- echo -n " wait for settle"
- $SETTLE
- echo " ."
-}
-
-stop() {
- echo -n "Stopping $DESC:"
- killall $BIN
- echo " ."
-}