mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 03:23:09 +02:00
16 lines
178 B
Plaintext
16 lines
178 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
DEFAULT=/etc/default/pppoe-server
|
||
|
[ -f $DEFAULT ] && . $DEFAULT
|
||
|
|
||
|
case $1 in
|
||
|
start)
|
||
|
pppoe-server $OPTIONS
|
||
|
;;
|
||
|
*)
|
||
|
echo "usage: $0 (start)"
|
||
|
exit 1
|
||
|
esac
|
||
|
|
||
|
exit $?
|