packages/net/rp-pppoe/files/pppoe-client.init
florian 9a38c4444f Port rp-pppoe to -ng
git-svn-id: svn://svn.openwrt.org/openwrt/packages@4507 3c298f89-4303-0410-b956-a3cf2f4a3e73
2006-08-07 13:26:16 +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 $?