mirror of https://github.com/ntop/n2n.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
374 B
26 lines
374 B
5 years ago
|
#!/bin/sh /etc/rc.common
|
||
|
START=90
|
||
|
STOP=10
|
||
|
|
||
|
USE_PROCD=1
|
||
|
PROG=/usr/bin/edge
|
||
|
CONFIGFILE=/etc/config/n2n-edge.conf
|
||
|
|
||
|
start_service() {
|
||
|
procd_open_instance
|
||
|
procd_set_param command $PROG $CONFIGFILE
|
||
|
procd_set_param file $CONFIGFILE
|
||
|
procd_set_param respawn
|
||
|
procd_close_instance
|
||
|
}
|
||
|
|
||
|
stop_service()
|
||
|
{
|
||
|
service_stop $PROG
|
||
|
}
|
||
|
|
||
|
service_triggers()
|
||
|
{
|
||
|
procd_add_reload_trigger "edge"
|
||
|
}
|