summaryrefslogtreecommitdiffstats
path: root/net/rp-pppoe/files/pppoe-relay.init
blob: 965aa74065c147008214b3c12d8e0ad7f33b8c45 (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-relay

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

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