1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-18 02:51:08 +03:00
openwrt-xburst/package/rp-pppoe/files/pppoe-server.init

16 lines
178 B
Plaintext
Raw Normal View History

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