summaryrefslogtreecommitdiffstats
path: root/package/netifd/files/etc/init.d/netifd
blob: 840083b61f8eab7cbc771eed1be24ef8dc85018a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/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
}