mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-27 22:59:53 +00:00
7a176742bb
SVN-Revision: 28839
25 lines
342 B
Bash
Executable File
25 lines
342 B
Bash
Executable File
#!/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
|
|
}
|
|
|
|
stop() {
|
|
service_stop /sbin/netifd
|
|
}
|
|
|
|
reload() {
|
|
ubus call network reload
|
|
}
|