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

13 lines
111 B
Plaintext
Raw Normal View History

#!/bin/sh
case "$1" in
start|stop)
adsl-$1
;;
*)
echo "usage: $0 {start|stop}"
exit 1
esac
exit $?