netifd: improve /sbin/ifup wifi hack, make it work properly with -a. fold /etc/init...
[openwrt/svn-archive/archive.git] / package / netifd / files / etc / init.d / netifd
diff --git a/package/netifd/files/etc/init.d/netifd b/package/netifd/files/etc/init.d/netifd
deleted file mode 100755 (executable)
index 840083b..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh /etc/rc.common
-
-START=20
-
-SERVICE_DAEMONIZE=1
-SERVICE_WRITE_PID=1
-
-start() {
-       stop
-       [ -e /proc/sys/kernel/core_pattern ] && {
-               ulimit -c unlimited
-               echo '/tmp/%e.%p.%s.%t.core' > /proc/sys/kernel/core_pattern
-       }
-       service_start /sbin/netifd
-       sleep 1
-}
-
-restart() {
-       ifdown -a
-       sleep 1
-       stop
-       start
-}
-
-stop() {
-       service_stop /sbin/netifd
-}
-
-reload() {
-       ubus call network reload
-}