diff options
author | Christian Pointner <equinox@helsinki.at> | 2013-09-16 17:28:10 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2013-09-16 17:28:10 (GMT) |
commit | 21e360a48f963eeddc86dd913b85836734c454c4 (patch) | |
tree | f5224aa315b1d215974dc5737ac807f21509d80c /openwrt/rhctl/files/udev.init | |
parent | c5ecd44e7073027eb8ce6ec0ec5ff8456be77552 (diff) |
updated openwrt package
Diffstat (limited to 'openwrt/rhctl/files/udev.init')
-rw-r--r-- | openwrt/rhctl/files/udev.init | 25 |
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 " ." -} |