12 lines
149 B
Plaintext
12 lines
149 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
# Copyright (C) 2006 OpenWrt.org
|
||
|
|
||
|
START=60
|
||
|
start() {
|
||
|
/usr/sbin/quagga.init start
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
/usr/sbin/quagga.init stop
|
||
|
}
|