1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-18 00:30:14 +03:00
openwrt-xburst/package/rp-pppoe/files/pppoe-relay.init

16 lines
176 B
Plaintext
Raw Normal View History

#!/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 $?