mirror of
https://github.com/coolsnowwolf/routing.git
synced 2025-05-01 14:42:10 +08:00
12 lines
149 B
Bash
12 lines
149 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
START=60
|
|
start() {
|
|
/usr/sbin/quagga.init start
|
|
}
|
|
|
|
stop() {
|
|
/usr/sbin/quagga.init stop
|
|
}
|