Openwrt/openwrt/package/rp-pppoe/files/pppoe-client.init
Nicolas Thill 4905ec691b Add rp-pppoe package
SVN-Revision: 1413
2005-07-11 21:17:45 +00:00

13 lines
111 B
Bash

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