#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org

DEFAULT=/etc/default/pppoe-server

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

stop() {
	killall pppoe-server
}