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