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
|
|
|
|
2006-10-04 20:57:49 +00:00
|
|
|
start() {
|
2007-04-07 21:54:20 +00:00
|
|
|
pppoe-start
|
2006-10-04 20:57:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
2007-04-07 21:54:20 +00:00
|
|
|
pppoe-stop
|
2006-10-04 20:57:49 +00:00
|
|
|
}
|
2006-08-07 13:26:16 +00:00
|
|
|
|