2006-10-04 20:57:49 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
2007-05-10 10:38:53 +00:00
|
|
|
START=50
|
2006-08-07 13:26:16 +00:00
|
|
|
|
|
|
|
DEFAULT=/etc/default/pppoe-server
|
|
|
|
|
2006-10-04 20:57:49 +00:00
|
|
|
start() {
|
2006-10-15 21:03:30 +00:00
|
|
|
[ -f $DEFAULT ] && . $DEFAULT
|
2006-10-04 20:57:49 +00:00
|
|
|
pppoe-server $OPTIONS
|
|
|
|
}
|
2006-08-07 13:26:16 +00:00
|
|
|
|
2006-10-04 20:57:49 +00:00
|
|
|
stop() {
|
|
|
|
killall pppoe-server
|
|
|
|
}
|