2014-01-11 15:05:17 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
|
|
|
|
|
|
|
START=50
|
|
|
|
|
2014-07-29 00:14:35 +00:00
|
|
|
SERVICE_WRITE_PID=1
|
|
|
|
SERVICE_DAEMONIZE=1
|
2014-01-11 15:05:17 +00:00
|
|
|
|
2014-05-14 12:22:06 +00:00
|
|
|
|
2014-01-11 15:05:17 +00:00
|
|
|
start() {
|
2014-07-29 00:14:35 +00:00
|
|
|
service_start /usr/sbin/gluon-radvd -i br-client -p $(lua -e 'print(require("gluon.site_config").prefix6)')
|
2014-01-11 15:05:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
2014-07-29 00:14:35 +00:00
|
|
|
service_stop /usr/sbin/gluon-radvd
|
2014-01-11 15:05:17 +00:00
|
|
|
}
|