15 lines
293 B
Plaintext
15 lines
293 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
|
||
|
USE_PROCD=1
|
||
|
START=20
|
||
|
STOP=90
|
||
|
|
||
|
start_service() {
|
||
|
procd_open_instance
|
||
|
procd_set_param command /usr/sbin/gluon-arp-limiter
|
||
|
procd_set_param respawn ${respawn_threshold:-3600} ${respawn_timeout:-5} ${respawn_retry:-5}
|
||
|
|
||
|
procd_set_param stderr 1
|
||
|
procd_close_instance
|
||
|
}
|