13 lines
118 B
Bash
Executable File
13 lines
118 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
START=50
|
|
|
|
start() {
|
|
pppoe-start
|
|
}
|
|
|
|
stop() {
|
|
pppoe-stop
|
|
}
|
|
|