7608ba449f
git-svn-id: svn://svn.openwrt.org/openwrt/packages@5128 3c298f89-4303-0410-b956-a3cf2f4a3e73
15 lines
185 B
Bash
Executable File
15 lines
185 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
BIN=parprouted
|
|
DEFAULT=/etc/default/$BIN
|
|
|
|
start() {
|
|
[ -f $DEFAULT ] && . $DEFAULT
|
|
$BIN $OPTIONS
|
|
}
|
|
|
|
stop() {
|
|
killall $BIN
|
|
}
|