Root/package/procd/files/procd.init

1#!/bin/sh /etc/rc.common
2
3START=11
4
5start_stop() {
6    start-stop-daemon $1 -b -m -p /var/run/procd.pid -x /sbin/procd
7}
8
9start() {
10    start_stop -S
11}
12
13reload() {
14    return
15}
16
17stop() {
18    start_stop -K
19}
20

Archive Download this file



interactive