gluon-radvd: Use procd in init script
The main advantage is that procd is capable of logging stderr to logd, making errors easier to debug.
This commit is contained in:
parent
f3cb6d7b36
commit
d445cb772d
@ -1,17 +1,15 @@
|
|||||||
#!/bin/sh /etc/rc.common
|
#!/bin/sh /etc/rc.common
|
||||||
|
|
||||||
|
USE_PROCD=1
|
||||||
START=50
|
START=50
|
||||||
|
|
||||||
SERVICE_WRITE_PID=1
|
start_service() {
|
||||||
SERVICE_DAEMONIZE=1
|
|
||||||
|
|
||||||
|
|
||||||
start() {
|
|
||||||
[ -x /lib/gluon/radvd/arguments ] && {
|
[ -x /lib/gluon/radvd/arguments ] && {
|
||||||
service_start /usr/sbin/uradvd $(/lib/gluon/radvd/arguments)
|
procd_open_instance
|
||||||
|
procd_param command /usr/sbin/uradvd $(/lib/gluon/radvd/arguments)
|
||||||
|
procd_set_param respawn ${respawn_threshold:-3600} ${respawn_timeout:-5} ${respawn_retry:-5}
|
||||||
|
procd_set_param netdev br-client
|
||||||
|
procd_set_param stderr 1
|
||||||
|
procd_close_instance
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stop() {
|
|
||||||
service_stop /usr/sbin/uradvd
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user