bluez-utils: Fix dbus conf filename.
[openwrt/svn-archive/archive.git] / net / rp-pppoe / files / pppoe-server.init
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006 OpenWrt.org
3 START=50
4
5 DEFAULT=/etc/default/pppoe-server
6
7 start() {
8 [ -f $DEFAULT ] && . $DEFAULT
9 pppoe-server $OPTIONS
10 }
11
12 stop() {
13 killall pppoe-server
14 }