summaryrefslogtreecommitdiffstats
path: root/net/rp-pppoe/files/pppoe-server.init
blob: 16be3bf2b82580d96e166c7a0b424d2507e8ee08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh /etc/rc.common
# Copyright (C) 2006-2011 OpenWrt.org

START=50

DEFAULT=/etc/default/pppoe-server

start() {
	[ -f $DEFAULT ] && . $DEFAULT
	service_start /usr/sbin/pppoe-server $OPTIONS
}

stop() {
	service_stop /usr/sbin/pppoe-server
}