openwrtv4/openwrt/package/rp-pppoe/files/pppoe-client.init

13 lines
111 B
Text
Raw Normal View History

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