summaryrefslogtreecommitdiffstats
path: root/package/procd/files/procd.init
blob: 3df5f48e60c11ffd6202b9487fe3b75e100c2715 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh /etc/rc.common

START=11

start_stop() {
	start-stop-daemon $1 -b -m -p /var/run/procd.pid -x /sbin/procd
}

start() {
	start_stop -S
}

reload() {
	return
}

stop() {
	start_stop -K
}