65ee128c37
The arguments are now provided by gluon-mesh-batman-adv-core, so gluon-radvd can be used with other mesh protocols. [Matthias Schiffer: removed PROVIDES dependency]
18 lines
240 B
Bash
Executable File
18 lines
240 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=50
|
|
|
|
SERVICE_WRITE_PID=1
|
|
SERVICE_DAEMONIZE=1
|
|
|
|
|
|
start() {
|
|
[ -x /lib/gluon/radvd/arguments ] && {
|
|
service_start /usr/sbin/uradvd $(/lib/gluon/radvd/arguments)
|
|
}
|
|
}
|
|
|
|
stop() {
|
|
service_stop /usr/sbin/uradvd
|
|
}
|