14 lines
179 B
Plaintext
14 lines
179 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
# Copyright (C) 2006-2011 OpenWrt.org
|
||
|
|
||
|
START=50
|
||
|
|
||
|
start() {
|
||
|
service_start /usr/sbin/mrd6 -f /etc/mrd6.conf -D
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
service_stop /usr/sbin/mrd6
|
||
|
}
|
||
|
|